diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2008-05-08 20:37:26 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2008-05-08 20:37:26 +0000 |
| commit | 7835a203473cff4255c1703349fd42ce08b61a46 (patch) | |
| tree | cbf0a4905728786929f7bca784b199a6a630c34a /apps | |
| parent | 3f05f9151c79826293f4f5217116a894ad94c0a5 (diff) | |
| download | rockbox-7835a203473cff4255c1703349fd42ce08b61a46.zip rockbox-7835a203473cff4255c1703349fd42ce08b61a46.tar.gz rockbox-7835a203473cff4255c1703349fd42ce08b61a46.tar.bz2 rockbox-7835a203473cff4255c1703349fd42ce08b61a46.tar.xz | |
Prototype declaration strictness fixes.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17424 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/gui/gwps.c | 2 | ||||
| -rw-r--r-- | apps/gui/pitchscreen.c | 1 | ||||
| -rw-r--r-- | apps/gui/quickscreen.c | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/apps/gui/gwps.c b/apps/gui/gwps.c index 28aea49..26d31c6 100644 --- a/apps/gui/gwps.c +++ b/apps/gui/gwps.c @@ -118,7 +118,7 @@ static void prev_track(unsigned skip_thresh) } } -void next_track(void) +static void next_track(void) { /* take care of if we're playing a cuesheet */ if (cuesheet_is_enabled() && wps_state.id3->cuesheet_type) diff --git a/apps/gui/pitchscreen.c b/apps/gui/pitchscreen.c index f6623dd..6b8fcf2 100644 --- a/apps/gui/pitchscreen.c +++ b/apps/gui/pitchscreen.c @@ -33,6 +33,7 @@ #include "lang.h" #include "icons.h" #include "screen_access.h" +#include "screens.h" #define PITCH_MAX 2000 #define PITCH_MIN 500 diff --git a/apps/gui/quickscreen.c b/apps/gui/quickscreen.c index 304d380..5ebf1dc 100644 --- a/apps/gui/quickscreen.c +++ b/apps/gui/quickscreen.c @@ -231,7 +231,7 @@ static int option_value(const struct settings_list *setting) return *(int*)setting->setting; } -void talk_qs_option(struct settings_list *opt, bool enqueue) +static void talk_qs_option(struct settings_list *opt, bool enqueue) { if (global_settings.talk_menu) { if(!enqueue) |