uridecodebin: fix debug message printf format compiler warning
authorMatej Knopp <matej.knopp@gmail.com>
Sun, 27 Nov 2011 19:14:08 +0000 (20:14 +0100)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Sun, 27 Nov 2011 22:43:20 +0000 (22:43 +0000)
https://bugzilla.gnome.org/show_bug.cgi?id=662607

gst/playback/gsturidecodebin.c

index 4b8d01d..5c23bac 100644 (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)