diff options
author | Edward Hervey <bilboed@bilboed.com> | 2009-04-18 17:42:55 +0200 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2009-04-18 18:51:27 +0200 |
commit | 4a9e80720acc41d8f335220f36d0c7ab11f03f25 (patch) | |
tree | 06662c08797f16a635237742fa76f31973845fc3 /ext/cairo | |
parent | 06a4b80918eae60f34d3bae453b6f527ae4d09d3 (diff) |
Remove unused variables in _class_init
Detected by LLVM's CLang static analyzer
Diffstat (limited to 'ext/cairo')
-rw-r--r-- | ext/cairo/gsttimeoverlay.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/cairo/gsttimeoverlay.c b/ext/cairo/gsttimeoverlay.c index 5a2f016f4..b69934c3d 100644 --- a/ext/cairo/gsttimeoverlay.c +++ b/ext/cairo/gsttimeoverlay.c @@ -281,12 +281,8 @@ gst_cairo_time_overlay_base_init (gpointer g_class) static void gst_cairo_time_overlay_class_init (gpointer klass, gpointer class_data) { - GObjectClass *gobject_class; - GstElementClass *element_class; GstBaseTransformClass *trans_class; - gobject_class = (GObjectClass *) klass; - element_class = (GstElementClass *) klass; trans_class = (GstBaseTransformClass *) klass; parent_class = g_type_class_peek_parent (klass); |