From 652657781805d9cc10d744a49fb23eb17019fbbf Mon Sep 17 00:00:00 2001 From: Steve Bavin Date: Tue, 13 May 2008 09:57:56 +0000 Subject: Plugin parameters should be const. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17492 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/minesweeper.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/plugins/minesweeper.c') diff --git a/apps/plugins/minesweeper.c b/apps/plugins/minesweeper.c index e4b8c93..7b1587c 100644 --- a/apps/plugins/minesweeper.c +++ b/apps/plugins/minesweeper.c @@ -221,7 +221,7 @@ enum minesweeper_status { * it's nice not to have to pass the api pointer in all function calls * in the plugin */ -static struct plugin_api *rb; +static const struct plugin_api *rb; extern const fb_data minesweeper_tiles[]; @@ -731,7 +731,7 @@ enum minesweeper_status minesweeper( void ) } /* plugin entry point */ -enum plugin_status plugin_start(struct plugin_api* api, void* parameter) +enum plugin_status plugin_start(const struct plugin_api* api, const void* parameter) { bool exit = false; -- cgit v1.1