From: Matej Knopp Date: Sun, 27 Nov 2011 19:14:08 +0000 (+0100) Subject: uridecodebin: fix debug message printf format compiler warning X-Git-Tag: RELEASE-0.11.2~326 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2c55cc7bcb4b0fb0b13fe82ff13ec48db1d91525;p=platform%2Fupstream%2Fgst-plugins-base.git uridecodebin: fix debug message printf format compiler warning https://bugzilla.gnome.org/show_bug.cgi?id=662607 --- diff --git a/gst/playback/gsturidecodebin.c b/gst/playback/gsturidecodebin.c index 4b8d01d..5c23bac 100644 --- a/gst/playback/gsturidecodebin.c +++ b/gst/playback/gsturidecodebin.c @@ -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)