summaryrefslogtreecommitdiff
path: root/firmware/mp3data.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-04-02 23:06:20 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-04-02 23:06:20 +0000
commitc16c727e5426406305b23039f49c2a4ae01562b0 (patch)
tree68afd55c52deb7378fcae92868e6a4c554107b1d /firmware/mp3data.c
parent4bc7bdfe7cd8ff127d32dd91037fdf261b870492 (diff)
downloadrockbox-c16c727e5426406305b23039f49c2a4ae01562b0.tar.gz
rockbox-c16c727e5426406305b23039f49c2a4ae01562b0.zip
killed warning due to comparison signed/unsigned
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9444 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/mp3data.c')
-rw-r--r--firmware/mp3data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/mp3data.c b/firmware/mp3data.c
index e3de76765b..713fb68c18 100644
--- a/firmware/mp3data.c
+++ b/firmware/mp3data.c
@@ -362,7 +362,7 @@ int get_mp3file_info(int fd, struct mp3info *info)
362 return -2; 362 return -2;
363 363
364 /* OK, we have found a frame. Let's see if it has a Xing header */ 364 /* OK, we have found a frame. Let's see if it has a Xing header */
365 if (info->frame_size-4 >= sizeof(frame)) 365 if (info->frame_size-4 >= (int)sizeof(frame))
366 { 366 {
367#if defined(DEBUG) || defined(SIMULATOR) 367#if defined(DEBUG) || defined(SIMULATOR)
368 DEBUGF("Error: Invalid id3 header, frame_size: %d\n", info->frame_size); 368 DEBUGF("Error: Invalid id3 header, frame_size: %d\n", info->frame_size);