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:
parent
faec50d67b
commit
6e5dcaed29
1 changed files with 1 additions and 1 deletions
|
@ -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. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue