forked from len0rd/rockbox
Revert accidental commit of "%z" support in r26071 (the implementation assumed size_t==long, which is not always the case in hosted environments)
Remove four remaining uses of %z, three of which were in DEBUGF git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27479 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
3cd1968cbc
commit
63011c6743
5 changed files with 6 additions and 7 deletions
|
@ -786,12 +786,12 @@ ssize_t disk_buf_prepare_streaming(off_t pos, size_t len)
|
|||
else if (pos > disk_buf.filesize)
|
||||
pos = disk_buf.filesize;
|
||||
|
||||
DEBUGF("prepare streaming:\n pos:%ld len:%zu\n", pos, len);
|
||||
DEBUGF("prepare streaming:\n pos:%ld len:%lu\n", pos, (unsigned long)len);
|
||||
|
||||
pos = disk_buf_lseek(pos, SEEK_SET);
|
||||
len = disk_buf_probe(pos, len, NULL);
|
||||
|
||||
DEBUGF(" probe done: pos:%ld len:%zu\n", pos, len);
|
||||
DEBUGF(" probe done: pos:%ld len:%lu\n", pos, (unsigned long)len);
|
||||
|
||||
len = disk_buf_send_msg(STREAM_RESET, pos);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue