From ff4ac9ddf6f65c98f0aabbd21bcd5cb5480de3e6 Mon Sep 17 00:00:00 2001 From: Thiago Santos Date: Thu, 3 Dec 2009 17:49:55 -0300 Subject: [PATCH] qtdemux: fix debug message printf args Fixes debug message printf format to make it build in mac's gcc --- gst/qtdemux/qtdemux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c index dd722ff..9849af3e 100644 --- a/gst/qtdemux/qtdemux.c +++ b/gst/qtdemux/qtdemux.c @@ -4234,8 +4234,8 @@ done2: gst_byte_reader_get_uint32_be_unchecked (&stream->stts); stream->stts_duration = gst_byte_reader_get_uint32_be_unchecked (&stream->stts); - GST_LOG_OBJECT (qtdemux, "block %d, %u timestamps, duration %u ", i, - stream->stts_samples, stream->stts_duration); + GST_LOG_OBJECT (qtdemux, "block %d, %u timestamps, duration %" + G_GUINT64_FORMAT, i, stream->stts_samples, stream->stts_duration); /* take first duration for fps */ if (G_UNLIKELY (stream->min_duration == 0)) -- 2.7.4