1
0
Fork 0
forked from len0rd/rockbox

another cast ssize_t -> long

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26034 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rafaël Carré 2010-05-14 22:16:40 +00:00
parent 84cd3763bd
commit 9e974e4590

View file

@ -99,7 +99,7 @@ static void get_more(unsigned char **start, size_t *size)
/* Just show a warning about this - will never happen /* Just show a warning about this - will never happen
* without a bug in the audio thread code or a clobbered * without a bug in the audio thread code or a clobbered
* buffer */ * buffer */
DEBUGF("get_more: invalid size (%ld)\n", sz); DEBUGF("get_more: invalid size (%ld)\n", (long)sz);
} }
if (offset < -100*CLOCK_RATE/1000) if (offset < -100*CLOCK_RATE/1000)