From: Edward Hervey Date: Wed, 25 Feb 2009 07:22:00 +0000 (+0100) Subject: Playbin2: Don't leave unused parameters in debug statements. X-Git-Tag: RELEASE-0.10.23~256 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2968cc871012488105045ace9314a591e3c8d4c3;p=platform%2Fupstream%2Fgst-plugins-base.git Playbin2: Don't leave unused parameters in debug statements. Fixes build on macosx --- diff --git a/gst/playback/gstplaybin2.c b/gst/playback/gstplaybin2.c index b033a5889..72f0137b3 100644 --- a/gst/playback/gstplaybin2.c +++ b/gst/playback/gstplaybin2.c @@ -2015,7 +2015,8 @@ shutdown: } /* streaming might error with NOT_LINKED if any of this fails, * but at least we tried */ - GST_DEBUG_OBJECT (playbin, "creating fakesink", select->type); + GST_DEBUG_OBJECT (playbin, "creating fakesink (sinktype:%d)", + select->type); select->fakesink = gst_element_factory_make ("fakesink", "fakesink"); if (select->fakesink) { GST_OBJECT_FLAG_UNSET (select->fakesink, GST_ELEMENT_IS_SINK);