uridecodebin: fix debug message printf format compiler warning

https://bugzilla.gnome.org/show_bug.cgi?id=662607
This commit is contained in:
Matej Knopp 2011-11-27 20:14:08 +01:00 committed by Tim-Philipp Müller
parent 32b14c6ed3
commit 2c55cc7bcb

View file

@ -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)