From: Tim-Philipp Müller Date: Sun, 21 Aug 2016 23:05:52 +0000 (+0100) Subject: splitmuxsink: fix printf format compiler warning in debug message X-Git-Tag: 1.19.3~509^2~2595 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=78bb4cc7e2a0c8570cee25788730b114af9dbfd5;p=platform%2Fupstream%2Fgstreamer.git splitmuxsink: fix printf format compiler warning in debug message On 32-bit x86: gstsplitmuxsink.c:966:31: warning: format ‘%u’ expects argument of type ‘unsigned int’, but argument 9 has type ‘guint64 {aka long long unsigned int}’ --- diff --git a/gst/multifile/gstsplitmuxsink.c b/gst/multifile/gstsplitmuxsink.c index 1e0c91ecb8..585b1ffd8d 100644 --- a/gst/multifile/gstsplitmuxsink.c +++ b/gst/multifile/gstsplitmuxsink.c @@ -965,7 +965,7 @@ handle_gathered_gop (GstSplitMuxSink * splitmux) /* No overflow */ GST_LOG_OBJECT (splitmux, "This GOP didn't overflow the fragment. Bytes sent %" G_GUINT64_FORMAT - " queued %" G_GSIZE_FORMAT " time %" GST_STIME_FORMAT " Continuing.", + " queued %" G_GUINT64_FORMAT " time %" GST_STIME_FORMAT " Continuing.", splitmux->muxed_out_bytes - splitmux->mux_start_bytes, queued_bytes, GST_STIME_ARGS (queued_time));