summaryrefslogtreecommitdiff
path: root/apps/codecs/libffmpegFLAC/shndec.c
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2010-07-15 16:30:48 +0000
committerNils Wallménius <nils@rockbox.org>2010-07-15 16:30:48 +0000
commit30a55c15c050519ae72e46f0e0c3ea5ef77e25de (patch)
treeaf71b4f609d92be63ed418545222cf2f6f0fc2f7 /apps/codecs/libffmpegFLAC/shndec.c
parenta87c61854ef614b258ca7d4d0b40db017884e63e (diff)
downloadrockbox-30a55c15c050519ae72e46f0e0c3ea5ef77e25de.tar.gz
rockbox-30a55c15c050519ae72e46f0e0c3ea5ef77e25de.zip
Hopefully fix 'comparison between signed and unsigned' warning
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27431 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libffmpegFLAC/shndec.c')
-rw-r--r--apps/codecs/libffmpegFLAC/shndec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libffmpegFLAC/shndec.c b/apps/codecs/libffmpegFLAC/shndec.c
index b107b356d7..db7984488d 100644
--- a/apps/codecs/libffmpegFLAC/shndec.c
+++ b/apps/codecs/libffmpegFLAC/shndec.c
@@ -423,7 +423,7 @@ int shorten_init(ShortenContext* s, uint8_t *buf, int buf_size)
423 get_bits(&s->gb, s->bitindex); 423 get_bits(&s->gb, s->bitindex);
424 424
425 /* shorten signature */ 425 /* shorten signature */
426 if (get_bits_long(&s->gb, 32) != bswap_32(ff_get_fourcc("ajkg"))) { 426 if ((unsigned)get_bits_long(&s->gb, 32) != bswap_32(ff_get_fourcc("ajkg"))) {
427 return -1; 427 return -1;
428 } 428 }
429 429