diff options
author | Peter Kjellerstedt <pkj@axis.com> | 2007-09-12 08:38:22 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2007-09-12 08:38:22 +0000 |
commit | a698a439beb8a06dace3b5558b921ba2549699a1 (patch) | |
tree | 5994afab966ec485aaacc769dbd9a7b3b64c9ee9 /gst-libs | |
parent | ee01676c0d23b8ab0426a14306a1f0d1cefdc750 (diff) |
gst/: Printf format fixes (#476128).
Original commit message from CVS:
Patch by: Peter Kjellerstedt <pkj at axis com>
* 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).
Diffstat (limited to 'gst-libs')
-rw-r--r-- | gst-libs/gst/app/gstappsink.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst-libs/gst/app/gstappsink.c b/gst-libs/gst/app/gstappsink.c index b4c65af82..eaf832fba 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); } |