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

@ -85,7 +85,7 @@ next_track:
/* Read the shorten & wave headers */
buf = ci->request_buffer(&bytesleft, MAX_FRAMESIZE);
res = shorten_init(&sc, buf, bytesleft);
res = shorten_init(&sc, (unsigned char *)buf, bytesleft);
if (res < 0) {
LOGF("shorten_init error: %d\n", res);
return CODEC_ERROR;
@ -139,10 +139,10 @@ seek_start:
ci->yield();
if (cur_chan == 0) {
res = shorten_decode_frame(&sc, decoded0 + sc.nwrap, offset0,
buf, bytesleft);
(unsigned char *)buf, bytesleft);
} else {
res = shorten_decode_frame(&sc, decoded1 + sc.nwrap, offset1,
buf, bytesleft);
(unsigned char *)buf, bytesleft);
}
cur_chan++;