1
0
Fork 0
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:
Daniel Stenberg 2005-12-02 08:42:48 +00:00
parent 5c1f9859e4
commit 76667e2a5b
8 changed files with 20 additions and 20 deletions

View file

@ -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)) {