1
0
Fork 0
forked from len0rd/rockbox

Fix yellow.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24684 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Mohamed Tarek 2010-02-16 02:00:28 +00:00
parent faec50d67b
commit 6e5dcaed29

View file

@ -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. */