From: Edward Hervey Date: Fri, 3 Dec 2010 10:27:17 +0000 (+0100) Subject: pipeline: Use an object as first argument to GST_WARNING_OBJECT X-Git-Tag: RELEASE-0.10.32~223 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fc7967a0b50aa8c81982ccc7545d7226f44225a6;p=platform%2Fupstream%2Fgstreamer.git pipeline: Use an object as first argument to GST_WARNING_OBJECT --- diff --git a/gst/gstpipeline.c b/gst/gstpipeline.c index 7dd8ba8..1458bca 100644 --- a/gst/gstpipeline.c +++ b/gst/gstpipeline.c @@ -346,7 +346,8 @@ pipeline_update_start_time (GstElement * element) if (now != GST_CLOCK_TIME_NONE) GST_ELEMENT_START_TIME (pipeline) = now - element->base_time; else - GST_WARNING_OBJECT ("Clock %s returned invalid time, can't calculate " + GST_WARNING_OBJECT (element, + "Clock %s returned invalid time, can't calculate " "running_time when going to the PAUSED state", GST_OBJECT_NAME (clock));