summaryrefslogtreecommitdiff
path: root/gst/gstpluginfeature.c
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2009-10-28 00:29:30 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2009-10-28 00:44:24 +0000
commitdaecaf0e8af9234155646ed07c7269f3379b72f7 (patch)
treebc346cf8cb6e71fc1f128c3b5bab26778406e5aa /gst/gstpluginfeature.c
parentff7d9470b75e2f6743f5d716caa970f5d743b198 (diff)
Remove GST_DEBUG_FUNCPTR where they're pointless
There's not much point in using GST_DEBUG_FUNCPTR with GObject virtual functions such as get_property, set_propery, finalize and dispose, since they'll never be used by anyone anyway. Saves a few bytes and possibly a tenth of a polar bear.
Diffstat (limited to 'gst/gstpluginfeature.c')
-rw-r--r--gst/gstpluginfeature.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gst/gstpluginfeature.c b/gst/gstpluginfeature.c
index 15de8095c7..0ca7ab5a34 100644
--- a/gst/gstpluginfeature.c
+++ b/gst/gstpluginfeature.c
@@ -52,8 +52,7 @@ gst_plugin_feature_class_init (GstPluginFeatureClass * klass)
{
parent_class = g_type_class_peek_parent (klass);
- G_OBJECT_CLASS (klass)->finalize =
- GST_DEBUG_FUNCPTR (gst_plugin_feature_finalize);
+ G_OBJECT_CLASS (klass)->finalize = gst_plugin_feature_finalize;
}
static void