forked from len0rd/rockbox
Fix various size_t related warnings and errors
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26035 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
9e974e4590
commit
ed566826f5
5 changed files with 13 additions and 13 deletions
|
@ -99,7 +99,7 @@ static void get_more(unsigned char **start, size_t *size)
|
|||
/* Just show a warning about this - will never happen
|
||||
* without a bug in the audio thread code or a clobbered
|
||||
* buffer */
|
||||
DEBUGF("get_more: invalid size (%ld)\n", (long)sz);
|
||||
DEBUGF("get_more: invalid size (%zd)\n", sz);
|
||||
}
|
||||
|
||||
if (offset < -100*CLOCK_RATE/1000)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue