summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2010-06-22 06:58:17 +0000
committerRafaël Carré <rafael.carre@gmail.com>2010-06-22 06:58:17 +0000
commit34aac0e20dfa3d0de385daabe0b717911aae9b12 (patch)
treed71f0347f575a3424721326bd788b4ecc92ea9e1
parent072c0a15cbf8a9114de681406a6ba1bdb55a27a3 (diff)
downloadrockbox-34aac0e20dfa3d0de385daabe0b717911aae9b12.tar.gz
rockbox-34aac0e20dfa3d0de385daabe0b717911aae9b12.zip
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.c2
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)
208/* Returns buffer to malloc array. Only codeclib should need this. */ 208/* Returns buffer to malloc array. Only codeclib should need this. */
209static void* codec_get_buffer(size_t *size) 209static void* codec_get_buffer(size_t *size)
210{ 210{
211 DEBUGF("codec_get_buffer(%d)\n",(int)size); 211 DEBUGF("codec_get_buffer(%"PRIuPTR")\n",(uintptr_t)size);
212 *size = CODEC_SIZE; 212 *size = CODEC_SIZE;
213 return codec_mallocbuf; 213 return codec_mallocbuf;
214} 214}