diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2013-01-25 12:24:55 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2013-01-25 12:25:15 +0000 |
commit | cf695c6da9a8e4a680129ead65236423568ea5d3 (patch) | |
tree | 68642a4d4f44cc4609e2a7439633085747dcf83d /gst-libs/gst/insertbin | |
parent | 10639eb88972bf89656af694b8bf8c4b41255c69 (diff) | |
download | gstreamer-plugins-bad-cf695c6da9a8e4a680129ead65236423568ea5d3.tar.gz |
insertbin, tests: fix printf format compiler warnings
Diffstat (limited to 'gst-libs/gst/insertbin')
-rw-r--r-- | gst-libs/gst/insertbin/gstinsertbin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst-libs/gst/insertbin/gstinsertbin.c b/gst-libs/gst/insertbin/gstinsertbin.c index 295d2bc1b..1aa5c0889 100644 --- a/gst-libs/gst/insertbin/gstinsertbin.c +++ b/gst-libs/gst/insertbin/gstinsertbin.c @@ -622,7 +622,7 @@ gst_insert_bin_do_change (GstInsertBin * self, GstPad * pad) } else { if (!gst_ghost_pad_set_target (GST_GHOST_PAD (self->priv->sinkpad), sinkpad)) { - GST_WARNING_OBJECT (self, "Can not set %s:%s as target for %s", + GST_WARNING_OBJECT (self, "Can not set %s:%s as target for %s:%s", GST_DEBUG_PAD_NAME (sinkpad), GST_DEBUG_PAD_NAME (self->priv->sinkpad)); goto error; @@ -639,7 +639,7 @@ gst_insert_bin_do_change (GstInsertBin * self, GstPad * pad) } else { if (!gst_ghost_pad_set_target (GST_GHOST_PAD (self->priv->srcpad), srcpad)) { - GST_WARNING_OBJECT (self, "Can not set %s:%s as target for %s", + GST_WARNING_OBJECT (self, "Can not set %s:%s as target for %s:%s", GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (self->priv->srcpad)); goto error; |