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:
parent
ff548fad86
commit
6ef04a7f0e
5 changed files with 25 additions and 21 deletions
|
@ -881,8 +881,8 @@ bool disk_buf_init(void)
|
|||
|
||||
DEBUGF("disk_buf info:\n"
|
||||
" page count: %d\n"
|
||||
" size: %zd\n",
|
||||
disk_buf.pgcount, disk_buf.size);
|
||||
" size: %ld\n",
|
||||
disk_buf.pgcount, (long)disk_buf.size);
|
||||
|
||||
rb->memset(disk_buf.cache, 0xff,
|
||||
disk_buf.pgcount*sizeof (*disk_buf.cache));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue