1
0
Fork 0
forked from len0rd/rockbox

test_codec: fix DEBUGF pointer format specifier

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27040 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rafaël Carré 2010-06-22 06:58:17 +00:00
parent 072c0a15cb
commit 34aac0e20d

View file

@ -208,7 +208,7 @@ void close_wav(void)
/* Returns buffer to malloc array. Only codeclib should need this. */
static void* codec_get_buffer(size_t *size)
{
DEBUGF("codec_get_buffer(%d)\n",(int)size);
DEBUGF("codec_get_buffer(%"PRIuPTR")\n",(uintptr_t)size);
*size = CODEC_SIZE;
return codec_mallocbuf;
}