diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2012-05-20 01:57:49 +0200 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2012-05-20 01:57:49 +0200 |
| commit | f340768ad5210c875359e867353a1a73959a9da7 (patch) | |
| tree | c9a86e6f231fc65d1efbd3808d1f1f6414a81c49 | |
| parent | 1b6e8cba62d0ea12bc39b0e3f60f66c3892ca1ff (diff) | |
| download | rockbox-f340768ad5210c875359e867353a1a73959a9da7.zip rockbox-f340768ad5210c875359e867353a1a73959a9da7.tar.gz rockbox-f340768ad5210c875359e867353a1a73959a9da7.tar.bz2 rockbox-f340768ad5210c875359e867353a1a73959a9da7.tar.xz | |
_lists_uiviewport_update_callback can be made static
Change-Id: I25dfaa1636811a0340d1730a5a8f44caa85b1771
| -rw-r--r-- | apps/gui/list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/list.c b/apps/gui/list.c index c01a339..26b6ae3 100644 --- a/apps/gui/list.c +++ b/apps/gui/list.c @@ -608,7 +608,7 @@ bool gui_synclist_keyclick_callback(int action, void* data) */ static struct gui_synclist *current_lists; static bool ui_update_event_registered = false; -void _lists_uiviewport_update_callback(void *data) +static void _lists_uiviewport_update_callback(void *data) { (void)data; if (current_lists) |