splitmuxsink: fix printf format compiler warning in debug message
authorTim-Philipp Müller <tim@centricular.com>
Sun, 21 Aug 2016 23:05:52 +0000 (00:05 +0100)
committerTim-Philipp Müller <tim@centricular.com>
Sun, 21 Aug 2016 23:07:51 +0000 (00:07 +0100)
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}’

gst/multifile/gstsplitmuxsink.c

index 1e0c91e..585b1ff 100644 (file)
@@ -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));