summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2010-06-14 13:01:55 +0200
committerWim Taymans <wim.taymans@collabora.co.uk>2010-06-14 13:01:55 +0200
commit61db882bae1bb8211dfe59a2a2e27421dfcf6f6f (patch)
treeccb45bd53333b9731c29bef429f0abd2b2dfa997 /plugins
parentd612442fde5f8c55d59de43fc2a1a9d9a4037c10 (diff)
capsfilter: fix printf format
Diffstat (limited to 'plugins')
-rw-r--r--plugins/elements/gstcapsfilter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/elements/gstcapsfilter.c b/plugins/elements/gstcapsfilter.c
index 2fb1dc6119..792337d520 100644
--- a/plugins/elements/gstcapsfilter.c
+++ b/plugins/elements/gstcapsfilter.c
@@ -279,14 +279,14 @@ gst_capsfilter_accept_caps (GstBaseTransform * base,
GST_OBJECT_UNLOCK (capsfilter);
ret = gst_caps_can_intersect (caps, filter_caps);
- GST_DEBUG_OBJECT (capsfilter, "can intersect: %" GST_PTR_FORMAT, ret);
+ GST_DEBUG_OBJECT (capsfilter, "can intersect: %d", ret);
if (ret) {
/* if we can intersect, see if the other end also accepts */
if (direction == GST_PAD_SRC)
ret = gst_pad_peer_accept_caps (GST_BASE_TRANSFORM_SINK_PAD (base), caps);
else
ret = gst_pad_peer_accept_caps (GST_BASE_TRANSFORM_SRC_PAD (base), caps);
- GST_DEBUG_OBJECT (capsfilter, "peer accept: %" GST_PTR_FORMAT, ret);
+ GST_DEBUG_OBJECT (capsfilter, "peer accept: %d", ret);
}
gst_caps_unref (filter_caps);