1
0
Fork 0
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:
Frank Gevaerts 2010-07-18 12:42:47 +00:00
parent 3cd1968cbc
commit 63011c6743
5 changed files with 6 additions and 7 deletions

View file

@ -54,7 +54,7 @@ void write_int_instruction_to_file(int fd, char *instr, int value);
void allocate_memory(void **buf, size_t *bufsize)
{
*buf = rb->plugin_get_buffer(bufsize);
DEBUGF("Got %zud bytes of memory\n", *bufsize);
DEBUGF("Got %lu bytes of memory\n", (unsigned long)*bufsize);
}