1
0
Fork 0
forked from len0rd/rockbox

Eliminate %zd tag in printf format strings, replace them with %ld. The %z formatter kept generating type mismatch warnings.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26040 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jeffrey Goode 2010-05-15 03:34:31 +00:00
parent ff548fad86
commit 6ef04a7f0e
5 changed files with 25 additions and 21 deletions

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
* without a bug in the audio thread code or a clobbered
* buffer */
DEBUGF("get_more: invalid size (%zd)\n", sz);
DEBUGF("get_more: invalid size (%ld)\n", (long)sz);
}
if (offset < -100*CLOCK_RATE/1000)