diff options
author | Björn Stenberg <bjorn@haxx.se> | 2004-01-14 00:38:45 +0000 |
---|---|---|
committer | Björn Stenberg <bjorn@haxx.se> | 2004-01-14 00:38:45 +0000 |
commit | e99f3b2b13d63361e348a70ea8b19488f617ca3f (patch) | |
tree | f17f8cc8c253482aae9935e637d5caa06a58ee43 | |
parent | a108ec2ebd237835a688ae5c82c90e07607219ae (diff) | |
download | rockbox-e99f3b2b13d63361e348a70ea8b19488f617ca3f.tar.gz rockbox-e99f3b2b13d63361e348a70ea8b19488f617ca3f.zip |
Removed warnings
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4228 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/bookmark.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/bookmark.c b/apps/bookmark.c index b557e88fb2..ec49595e8a 100644 --- a/apps/bookmark.c +++ b/apps/bookmark.c @@ -43,6 +43,7 @@ #include "status.h" #include "debug.h" #include "kernel.h" +#include "sprintf.h" #define MAX_BOOKMARK_SIZE 350 #define RECENT_BOOKMARK_FILE ROCKBOX_DIR "/most-recent.bmark" @@ -836,6 +837,7 @@ static void display_bookmark(char* bookmark, lcd_puts_scroll(0, 5, str(LANG_BOOKMARK_SELECT_EXIT)); lcd_puts_scroll(0, 6, str(LANG_BOOKMARK_SELECT_DELETE)); #else + (void)bookmark_id; len=strlen(MP3_file_name); if (len>3) dot=strrchr(MP3_file_name+len-4,'.'); |