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}’
This commit is contained in:
Tim-Philipp Müller 2016-08-22 00:05:52 +01:00
parent b09f478e80
commit 78bb4cc7e2

View 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));