diff options
author | Rafaël Carré <rafael.carre@gmail.com> | 2010-06-22 06:58:17 +0000 |
---|---|---|
committer | Rafaël Carré <rafael.carre@gmail.com> | 2010-06-22 06:58:17 +0000 |
commit | 34aac0e20dfa3d0de385daabe0b717911aae9b12 (patch) | |
tree | d71f0347f575a3424721326bd788b4ecc92ea9e1 | |
parent | 072c0a15cbf8a9114de681406a6ba1bdb55a27a3 (diff) |
test_codec: fix DEBUGF pointer format specifier
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27040 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/plugins/test_codec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/test_codec.c b/apps/plugins/test_codec.c index 77ad9c9530..0e02ab54c5 100644 --- a/apps/plugins/test_codec.c +++ b/apps/plugins/test_codec.c @@ -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; } |