summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-05-06 21:37:03 +0000
committerThomas Martitz <kugel@rockbox.org>2010-05-06 21:37:03 +0000
commit77dfff5a5524e0a9d3ae54d8bb61d3c01e6082bb (patch)
treea3c16f138d63e4010fc08fb25db00aa4704da86a /apps
parent54548df56e36f870f0870a87dc6b9350836859bf (diff)
downloadrockbox-77dfff5a5524e0a9d3ae54d8bb61d3c01e6082bb.tar.gz
rockbox-77dfff5a5524e0a9d3ae54d8bb61d3c01e6082bb.zip
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')
-rw-r--r--apps/gui/skin_engine/skin_tokens.c2
-rw-r--r--apps/gui/usb_screen.c1
-rw-r--r--apps/recorder/recording.c2
3 files changed, 3 insertions, 2 deletions
diff --git a/apps/gui/skin_engine/skin_tokens.c b/apps/gui/skin_engine/skin_tokens.c
index 6e5a2eae85..20206f0114 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,
1079#endif /* HAVE_SPDIF_IN */ 1079#endif /* HAVE_SPDIF_IN */
1080 if (intval) 1080 if (intval)
1081 *intval = freq+1; /* so the token gets a value 1<=x<=7 */ 1081 *intval = freq+1; /* so the token gets a value 1<=x<=7 */
1082 snprintf(buf, buf_size, "%d\n", 1082 snprintf(buf, buf_size, "%s\n",
1083 freq_strings[global_settings.rec_frequency]); 1083 freq_strings[global_settings.rec_frequency]);
1084#endif 1084#endif
1085 return buf; 1085 return buf;
diff --git a/apps/gui/usb_screen.c b/apps/gui/usb_screen.c
index 9895defc2b..2873562edc 100644
--- a/apps/gui/usb_screen.c
+++ b/apps/gui/usb_screen.c
@@ -19,6 +19,7 @@
19 * 19 *
20 ****************************************************************************/ 20 ****************************************************************************/
21 21
22#include <stdbool.h>
22#include "action.h" 23#include "action.h"
23#include "font.h" 24#include "font.h"
24#ifdef HAVE_REMOTE_LCD 25#ifdef HAVE_REMOTE_LCD
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c
index 0f1ff30cf5..d5ac91000c 100644
--- a/apps/recorder/recording.c
+++ b/apps/recorder/recording.c
@@ -976,7 +976,7 @@ static const char* reclist_get_name(int selected_item, void * data,
976#if CONFIG_CODEC == SWCODEC 976#if CONFIG_CODEC == SWCODEC
977#ifdef HAVE_SPDIF_REC 977#ifdef HAVE_SPDIF_REC
978 case ITEM_SAMPLERATE_D: 978 case ITEM_SAMPLERATE_D:
979 snprintf(buffer, buffer_len, "%s: %d", 979 snprintf(buffer, buffer_len, "%s: %lu",
980 str(LANG_RECORDING_FREQUENCY), 980 str(LANG_RECORDING_FREQUENCY),
981 pcm_rec_sample_rate()); 981 pcm_rec_sample_rate());
982 break; 982 break;