mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
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:
parent
b09f478e80
commit
78bb4cc7e2
1 changed files with 1 additions and 1 deletions
|
@ -965,7 +965,7 @@ handle_gathered_gop (GstSplitMuxSink * splitmux)
|
||||||
/* No overflow */
|
/* No overflow */
|
||||||
GST_LOG_OBJECT (splitmux,
|
GST_LOG_OBJECT (splitmux,
|
||||||
"This GOP didn't overflow the fragment. Bytes sent %" G_GUINT64_FORMAT
|
"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,
|
splitmux->muxed_out_bytes - splitmux->mux_start_bytes,
|
||||||
queued_bytes, GST_STIME_ARGS (queued_time));
|
queued_bytes, GST_STIME_ARGS (queued_time));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue