mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
uridecodebin: fix debug message printf format compiler warning
https://bugzilla.gnome.org/show_bug.cgi?id=662607
This commit is contained in:
parent
32b14c6ed3
commit
2c55cc7bcb
1 changed files with 2 additions and 1 deletions
|
@ -2156,7 +2156,8 @@ handle_redirect_message (GstURIDecodeBin * dec, GstMessage * msg)
|
|||
const GstStructure *structure;
|
||||
|
||||
GST_DEBUG_OBJECT (dec, "redirect message: %" GST_PTR_FORMAT, msg);
|
||||
GST_DEBUG_OBJECT (dec, "connection speed: %u", dec->connection_speed);
|
||||
GST_DEBUG_OBJECT (dec, "connection speed: %" G_GUINT64_FORMAT,
|
||||
dec->connection_speed);
|
||||
|
||||
structure = gst_message_get_structure (msg);
|
||||
if (dec->connection_speed == 0 || structure == NULL)
|
||||
|
|
Loading…
Reference in a new issue