From 2c55cc7bcb4b0fb0b13fe82ff13ec48db1d91525 Mon Sep 17 00:00:00 2001 From: Matej Knopp Date: Sun, 27 Nov 2011 20:14:08 +0100 Subject: [PATCH] uridecodebin: fix debug message printf format compiler warning https://bugzilla.gnome.org/show_bug.cgi?id=662607 --- gst/playback/gsturidecodebin.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- 2.7.4