mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
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:
parent
072c0a15cb
commit
34aac0e20d
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue