summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mpegplayer/alloc.c')
-rw-r--r--apps/plugins/mpegplayer/alloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/mpegplayer/alloc.c b/apps/plugins/mpegplayer/alloc.c
index e5c79c4..c2165b2 100644
--- a/apps/plugins/mpegplayer/alloc.c
+++ b/apps/plugins/mpegplayer/alloc.c
@@ -96,8 +96,8 @@ static void * mpeg_malloc_internal (unsigned char *mallocbuf,
{
void *x;
- DEBUGF("mpeg_alloc_internal: bs:%zu s:%u reason:%s (%d)\n",
- bufsize, size, mpeg_get_reason_str(reason), reason);
+ DEBUGF("mpeg_alloc_internal: bs:%lu s:%u reason:%s (%d)\n",
+ (unsigned long)bufsize, size, mpeg_get_reason_str(reason), reason);
if ((size_t) (*mem_ptr + size) > bufsize)
{