projects
/
platform
/
upstream
/
gst-plugins-base.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
32b14c6
)
uridecodebin: fix debug message printf format compiler warning
author
Matej Knopp
<matej.knopp@gmail.com>
Sun, 27 Nov 2011 19:14:08 +0000
(20:14 +0100)
committer
Tim-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
patch
|
blob
|
history
diff --git
a/gst/playback/gsturidecodebin.c
b/gst/playback/gsturidecodebin.c
index 4b8d01def914578efad88969634c99504c9f9f87..5c23bac375b2ee1b9694b4a488d547fa788c0b10 100644
(file)
--- 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)