summaryrefslogtreecommitdiff
path: root/apps/codecs/lib/xxx2wav.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/lib/xxx2wav.c')
-rw-r--r--apps/codecs/lib/xxx2wav.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/lib/xxx2wav.c b/apps/codecs/lib/xxx2wav.c
index 9de0a7ae19..66cc8b3bbb 100644
--- a/apps/codecs/lib/xxx2wav.c
+++ b/apps/codecs/lib/xxx2wav.c
@@ -37,7 +37,7 @@ void* codec_malloc(size_t size)
37{ 37{
38 void* x; 38 void* x;
39 39
40 if (mem_ptr + size > bufsize) 40 if (mem_ptr + (int)size > bufsize)
41 return NULL; 41 return NULL;
42 42
43 x=&mallocbuf[mem_ptr]; 43 x=&mallocbuf[mem_ptr];