From 9cfd704b3b6eadf2c5532908440c214edc6788f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20=27Flameeyes=27=20Petten=C3=B2?= Date: Sat, 9 Jun 2007 11:49:35 +0200 Subject: Fix %d -> %zd for size_t parameter. --- src/demuxers/demux_qt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/demuxers/demux_qt.c b/src/demuxers/demux_qt.c index 4ce55502e..bfacd1410 100644 --- a/src/demuxers/demux_qt.c +++ b/src/demuxers/demux_qt.c @@ -758,7 +758,7 @@ static char *parse_data_atom(unsigned char *data_atom) { xine_fast_memcpy(alloc_str, &data_atom[16], alloc_size-1); alloc_str[alloc_size-1] = '\0'; - debug_meta_load("demux_qt: got a string of size %d (%s)\n", alloc_size, alloc_str); + debug_meta_load("demux_qt: got a string of size %zd (%s)\n", alloc_size, alloc_str); return alloc_str; } -- cgit v1.2.3