diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2010-05-06 21:37:03 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2010-05-06 21:37:03 +0000 |
| commit | 77dfff5a5524e0a9d3ae54d8bb61d3c01e6082bb (patch) | |
| tree | a3c16f138d63e4010fc08fb25db00aa4704da86a /apps/gui | |
| parent | 54548df56e36f870f0870a87dc6b9350836859bf (diff) | |
| download | rockbox-77dfff5a5524e0a9d3ae54d8bb61d3c01e6082bb.zip rockbox-77dfff5a5524e0a9d3ae54d8bb61d3c01e6082bb.tar.gz rockbox-77dfff5a5524e0a9d3ae54d8bb61d3c01e6082bb.tar.bz2 rockbox-77dfff5a5524e0a9d3ae54d8bb61d3c01e6082bb.tar.xz | |
Fix some more snprintf related warnings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25853 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui')
| -rw-r--r-- | apps/gui/skin_engine/skin_tokens.c | 2 | ||||
| -rw-r--r-- | apps/gui/usb_screen.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/apps/gui/skin_engine/skin_tokens.c b/apps/gui/skin_engine/skin_tokens.c index 6e5a2ea..20206f0 100644 --- a/apps/gui/skin_engine/skin_tokens.c +++ b/apps/gui/skin_engine/skin_tokens.c @@ -1079,7 +1079,7 @@ const char *get_token_value(struct gui_wps *gwps, #endif /* HAVE_SPDIF_IN */ if (intval) *intval = freq+1; /* so the token gets a value 1<=x<=7 */ - snprintf(buf, buf_size, "%d\n", + snprintf(buf, buf_size, "%s\n", freq_strings[global_settings.rec_frequency]); #endif return buf; diff --git a/apps/gui/usb_screen.c b/apps/gui/usb_screen.c index 9895def..2873562 100644 --- a/apps/gui/usb_screen.c +++ b/apps/gui/usb_screen.c @@ -19,6 +19,7 @@ * ****************************************************************************/ +#include <stdbool.h> #include "action.h" #include "font.h" #ifdef HAVE_REMOTE_LCD |