forked from len0rd/rockbox
fix gcc4 (un)signed warnings
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8124 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
5c1f9859e4
commit
76667e2a5b
8 changed files with 20 additions and 20 deletions
|
@ -167,7 +167,7 @@ next_track:
|
|||
inputbuffer = ci->request_buffer(&size, INPUT_CHUNK_SIZE);
|
||||
if (size == 0 || inputbuffer == NULL)
|
||||
break;
|
||||
mad_stream_buffer(&stream, inputbuffer, size);
|
||||
mad_stream_buffer(&stream, (unsigned char *)inputbuffer, size);
|
||||
}
|
||||
|
||||
if (mad_frame_decode(&frame, &stream)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue