summaryrefslogtreecommitdiff
path: root/apps/plugins/test_codec.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/test_codec.c')
-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}