From 6e5dcaed29ab4e7febcbf6bf1df81d3a8c28d4f7 Mon Sep 17 00:00:00 2001 From: Mohamed Tarek Date: Tue, 16 Feb 2010 02:00:28 +0000 Subject: Fix yellow. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24684 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/libatrac/atrac3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/codecs/libatrac/atrac3.c b/apps/codecs/libatrac/atrac3.c index 2f4d44b6af..ad57ad6237 100644 --- a/apps/codecs/libatrac/atrac3.c +++ b/apps/codecs/libatrac/atrac3.c @@ -1079,7 +1079,7 @@ int atrac3_decode_frame(unsigned long block_align, ATRAC3Context *q, int result = 0, off = 0; const uint8_t* databuf; - if (buf_size < block_align) + if ((unsigned)buf_size < block_align) return buf_size; /* Check if we need to descramble and what buffer to pass on. */ -- cgit v1.2.3