From a698a439beb8a06dace3b5558b921ba2549699a1 Mon Sep 17 00:00:00 2001 From: Peter Kjellerstedt Date: Wed, 12 Sep 2007 08:38:22 +0000 Subject: gst/: Printf format fixes (#476128). Original commit message from CVS: Patch by: Peter Kjellerstedt * gst-libs/gst/app/gstappsink.c: * gst/flv/gstflvdemux.c: * gst/flv/gstflvparse.c: * gst/interleave/deinterleave.c: * gst/switch/gstswitch.c: Printf format fixes (#476128). --- gst-libs/gst/app/gstappsink.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gst-libs/gst') diff --git a/gst-libs/gst/app/gstappsink.c b/gst-libs/gst/app/gstappsink.c index b4c65af8..eaf832fb 100644 --- a/gst-libs/gst/app/gstappsink.c +++ b/gst-libs/gst/app/gstappsink.c @@ -270,7 +270,7 @@ gst_app_sink_get_caps (GstBaseSink * psink) GST_OBJECT_LOCK (appsink); if ((caps = appsink->caps)) gst_caps_ref (caps); - GST_DEBUG_OBJECT (appsink, "got caps " GST_PTR_FORMAT, caps); + GST_DEBUG_OBJECT (appsink, "got caps %" GST_PTR_FORMAT, caps); GST_OBJECT_UNLOCK (appsink); return caps; @@ -295,7 +295,7 @@ gst_app_sink_set_caps (GstAppSink * appsink, GstCaps * caps) g_return_if_fail (GST_IS_APP_SINK (appsink)); GST_OBJECT_LOCK (appsink); - GST_DEBUG_OBJECT (appsink, "setting caps to " GST_PTR_FORMAT, caps); + GST_DEBUG_OBJECT (appsink, "setting caps to %" GST_PTR_FORMAT, caps); gst_caps_replace (&appsink->caps, caps); GST_OBJECT_UNLOCK (appsink); } -- cgit v1.2.1