1
0
Fork 0
forked from len0rd/rockbox

Fix some size_t related warnings (hopefully, they seem system dependant).

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25852 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2010-05-06 21:17:14 +00:00
parent 7210f69d81
commit 54548df56e
3 changed files with 4 additions and 4 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 %ld bytes of memory\n", *bufsize);
DEBUGF("Got %zud bytes of memory\n", *bufsize);
}