summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorРуслан Ижбулатов <lrn1986@gmail.com>2012-05-12 16:24:09 +0400
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2012-05-12 13:53:40 +0100
commitd34b8023e997d663b69f42b108969d7cb760b6f0 (patch)
treed88ce63d2a511b2d4d645aa192541644132e8c7c
parent34d60319748a1dc7ca1c56fd6c21d8e0b46bf2a8 (diff)
playsink: fix printf arguments in debug message
-rw-r--r--gst/playback/gstplaysink.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/playback/gstplaysink.c b/gst/playback/gstplaysink.c
index f28d41fae..33ca44602 100644
--- a/gst/playback/gstplaysink.c
+++ b/gst/playback/gstplaysink.c
@@ -3549,8 +3549,8 @@ gst_play_sink_refresh_pad (GstPlaySink * playsink, GstPad * pad,
/* ERRORS */
wrong_type:
{
- GST_WARNING_OBJECT (playsink, "wrong type %d for pad %" GST_PTR_FORMAT,
- pad);
+ GST_WARNING_OBJECT (playsink, "wrong type %u for pad %" GST_PTR_FORMAT,
+ type, pad);
GST_PLAY_SINK_UNLOCK (playsink);
return;
}