diff options
author | Bertrik Sikken <bertrik@sikken.nl> | 2011-12-20 20:35:28 +0000 |
---|---|---|
committer | Bertrik Sikken <bertrik@sikken.nl> | 2011-12-20 20:35:28 +0000 |
commit | cb972abc488fa4c06d16ba9ebeb030a0b8d45ed2 (patch) | |
tree | ae2abf8ed076d240cbb07bd8164d5ab7cca7bebf /apps/shortcuts.c | |
parent | 0cb0b502367380b73506a251f1d4841d340c3325 (diff) |
Another round of making local functions static
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31384 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/shortcuts.c')
-rw-r--r-- | apps/shortcuts.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/shortcuts.c b/apps/shortcuts.c index 75e005b166..33c22f2262 100644 --- a/apps/shortcuts.c +++ b/apps/shortcuts.c @@ -168,7 +168,7 @@ static void init_shortcut(struct shortcut* sc) } static int first_idx_to_writeback = -1; -void shortcuts_ata_idle_callback(void* data) +static void shortcuts_ata_idle_callback(void* data) { (void)data; int fd; @@ -223,7 +223,7 @@ void shortcuts_add(enum shortcut_type type, const char* value) register_storage_idle_func(shortcuts_ata_idle_callback); } -int readline_cb(int n, char *buf, void *parameters) +static int readline_cb(int n, char *buf, void *parameters) { (void)n; (void)parameters; @@ -388,7 +388,7 @@ static enum themable_icons shortcut_menu_get_icon(int selected_item, void * data return sc->icon; } -int shortcut_menu_speak_item(int selected_item, void * data) +static int shortcut_menu_speak_item(int selected_item, void * data) { (void)data; struct shortcut *sc = get_shortcut(selected_item); |