diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-04-02 23:06:20 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-04-02 23:06:20 +0000 |
commit | c16c727e5426406305b23039f49c2a4ae01562b0 (patch) | |
tree | 68afd55c52deb7378fcae92868e6a4c554107b1d /firmware/mp3data.c | |
parent | 4bc7bdfe7cd8ff127d32dd91037fdf261b870492 (diff) |
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.c | 2 |
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) return -2; /* OK, we have found a frame. Let's see if it has a Xing header */ - if (info->frame_size-4 >= sizeof(frame)) + if (info->frame_size-4 >= (int)sizeof(frame)) { #if defined(DEBUG) || defined(SIMULATOR) DEBUGF("Error: Invalid id3 header, frame_size: %d\n", info->frame_size); |