diff options
author | Steve Bavin <pondlife@pondlife.me> | 2008-05-13 09:57:56 +0000 |
---|---|---|
committer | Steve Bavin <pondlife@pondlife.me> | 2008-05-13 09:57:56 +0000 |
commit | 652657781805d9cc10d744a49fb23eb17019fbbf (patch) | |
tree | 2d1a6ae597a17531f726b57fd9f8cbaa2a46a07f /apps/plugins/reversi/reversi-game.h | |
parent | a94e40d5153ab698fa8a1b6b57d91fcb6acc905e (diff) |
Plugin parameters should be const.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17492 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/reversi/reversi-game.h')
-rw-r--r-- | apps/plugins/reversi/reversi-game.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/reversi/reversi-game.h b/apps/plugins/reversi/reversi-game.h index de05df78f9..9558f000bf 100644 --- a/apps/plugins/reversi/reversi-game.h +++ b/apps/plugins/reversi/reversi-game.h @@ -58,7 +58,7 @@ typedef struct _reversi_board_t { */ move_t history[BOARD_SIZE*BOARD_SIZE - INIT_STONES]; - struct plugin_api *rb; + const struct plugin_api *rb; } reversi_board_t; |