diff options
Diffstat (limited to 'apps/plugins/test_codec.c')
| -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 77ad9c9..0e02ab5 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; } |