From: Tim-Philipp Müller Date: Thu, 14 Apr 2011 23:09:14 +0000 (+0100) Subject: [MOVED FROM BAD 65/68] Fix some unused-but-set-variable warnings with gcc 4.6 X-Git-Tag: 1.19.3~511^2~7493 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=003abf00d95bf38219f99c2b7d2524d62a78c9bf;p=platform%2Fupstream%2Fgstreamer.git [MOVED FROM BAD 65/68] Fix some unused-but-set-variable warnings with gcc 4.6 --- diff --git a/gst/colorspace/gstcolorspace.c b/gst/colorspace/gstcolorspace.c index 3d934a5..6b512b5 100644 --- a/gst/colorspace/gstcolorspace.c +++ b/gst/colorspace/gstcolorspace.c @@ -430,13 +430,6 @@ gst_csp_base_init (gpointer klass) void gst_csp_dispose (GObject * object) { - GstCsp *csp; - - g_return_if_fail (GST_IS_CSP (object)); - csp = GST_CSP (object); - - /* clean up as possible. may be called multiple times */ - G_OBJECT_CLASS (parent_class)->dispose (object); }