summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2009-05-09 10:50:45 -0700
committerDavid Schleef <ds@schleef.org>2009-05-09 10:50:45 -0700
commitf01adcbc0fca70152dbf1cd7331f364dae8cbb4b (patch)
tree23ffa93b7017b78798655d2f6cf84e74f9b9a444
parent2e67ccde810ffbbb460ac2608e9189fb48f5f5b2 (diff)
matroska: fix printf format to agree with argument
-rw-r--r--gst/matroska/matroska-demux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/matroska/matroska-demux.c b/gst/matroska/matroska-demux.c
index 25a4a5008..1ae443395 100644
--- a/gst/matroska/matroska-demux.c
+++ b/gst/matroska/matroska-demux.c
@@ -3996,7 +3996,7 @@ gst_matroska_demux_parse_blockgroup_or_simpleblock (GstMatroskaDemux * demux,
data += 1;
size -= 1;
- GST_LOG_OBJECT (demux, "time %" G_GUINT16_FORMAT ", flags %d", time,
+ GST_LOG_OBJECT (demux, "time %" G_GUINT64_FORMAT ", flags %d", time,
flags);
switch ((flags & 0x06) >> 1) {