summaryrefslogtreecommitdiff
path: root/apps/plugins/rockbox_flash.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/rockbox_flash.c')
-rw-r--r--apps/plugins/rockbox_flash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/rockbox_flash.c b/apps/plugins/rockbox_flash.c
index ed0fd17f53..fd855ff520 100644
--- a/apps/plugins/rockbox_flash.c
+++ b/apps/plugins/rockbox_flash.c
@@ -95,7 +95,7 @@ typedef struct
95 char name[32]; 95 char name[32];
96} tFlashInfo; 96} tFlashInfo;
97 97
98static struct plugin_api* rb; /* here is a global api struct pointer */ 98static const struct plugin_api* rb; /* here is a global api struct pointer */
99 99
100static UINT8* sector; /* better not place this on the stack... */ 100static UINT8* sector; /* better not place this on the stack... */
101 101
@@ -1017,7 +1017,7 @@ void DoUserDialog(char* filename)
1017 1017
1018/***************** Plugin Entry Point *****************/ 1018/***************** Plugin Entry Point *****************/
1019 1019
1020enum plugin_status plugin_start(struct plugin_api* api, void* parameter) 1020enum plugin_status plugin_start(const struct plugin_api* api, const void* parameter)
1021{ 1021{
1022 int oldmode; 1022 int oldmode;
1023 1023