From 6bd0272512a4430095ad6869811576abd9b4dbd2 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Fri, 11 May 2012 16:16:33 +0200 Subject: [PATCH] uridecodebin: fix format strings --- gst/playback/gsturidecodebin.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/gst/playback/gsturidecodebin.c b/gst/playback/gsturidecodebin.c index 17f274a4d4..ce61b86065 100644 --- a/gst/playback/gsturidecodebin.c +++ b/gst/playback/gsturidecodebin.c @@ -1266,8 +1266,9 @@ gen_source_element (GstURIDecodeBin * decoder) speed = CLAMP (speed, pspecint->minimum, pspecint->maximum); } else { - GST_WARNING_OBJECT (decoder, "The connection speed property %i of type %s" - " is not usefull not setting it", speed, + GST_WARNING_OBJECT (decoder, + "The connection speed property %" G_GUINT64_FORMAT + " of type %s is not usefull not setting it", speed, g_type_name (G_PARAM_SPEC_TYPE (pspec))); wrong_type = TRUE; } @@ -1276,7 +1277,8 @@ gen_source_element (GstURIDecodeBin * decoder) g_object_set (source, "connection-speed", speed, NULL); GST_DEBUG_OBJECT (decoder, - "setting connection-speed=%d to source element", speed); + "setting connection-speed=%" G_GUINT64_FORMAT " to source element", + speed); } }