summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-06-09 11:49:35 +0200
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-06-09 11:49:35 +0200
commit9cfd704b3b6eadf2c5532908440c214edc6788f9 (patch)
tree315fb89b8873c82e2e1f75c7ff864adfa0788b22
parent72b3ce11eb673800237497eb74736ac092e9ee0d (diff)
downloadxine-lib-9cfd704b3b6eadf2c5532908440c214edc6788f9.tar.gz
xine-lib-9cfd704b3b6eadf2c5532908440c214edc6788f9.tar.bz2
Fix %d -> %zd for size_t parameter.
-rw-r--r--src/demuxers/demux_qt.c2
1 files changed, 1 insertions, 1 deletions
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;
}