diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2006-12-12 07:55:17 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2006-12-12 07:55:17 +0000 |
| commit | a0f311355cef06c593ed4f0c93a93f256c7eeff0 (patch) | |
| tree | fcada56f9f99c2cb8a8b1ba35b228b81a00de67a /apps/keymaps/keymap-newtarget.c | |
| parent | f51df0de210476d0fbd90a9f0e1fcd9054f275f5 (diff) | |
| download | rockbox-a0f311355cef06c593ed4f0c93a93f256c7eeff0.zip rockbox-a0f311355cef06c593ed4f0c93a93f256c7eeff0.tar.gz rockbox-a0f311355cef06c593ed4f0c93a93f256c7eeff0.tar.bz2 rockbox-a0f311355cef06c593ed4f0c93a93f256c7eeff0.tar.xz | |
Action code: Made all private functions & variables static. Better module separation, and it saves a bit of binary size. * Added a few missing 'const's.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11730 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/keymaps/keymap-newtarget.c')
| -rw-r--r-- | apps/keymaps/keymap-newtarget.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/keymaps/keymap-newtarget.c b/apps/keymaps/keymap-newtarget.c index ab1e157..69da4ef 100644 --- a/apps/keymaps/keymap-newtarget.c +++ b/apps/keymaps/keymap-newtarget.c @@ -42,12 +42,12 @@ * if there's no need to check the previous button's value, use BUTTON_NONE * Insert LAST_ITEM_IN_LIST at the end of each mapping */ -const struct button_mapping button_context_standard[] = { +static const struct button_mapping button_context_standard[] = { LAST_ITEM_IN_LIST }; /* button_context_standard */ -const struct button_mapping button_context_wps[] = { +static const struct button_mapping button_context_wps[] = { LAST_ITEM_IN_LIST }; /* button_context_wps */ |