summaryrefslogtreecommitdiff
path: root/gst/gsttask.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/gsttask.c
parentff7d9470b75e2f6743f5d716caa970f5d743b198 (diff)
downloadgstreamer-daecaf0e8af9234155646ed07c7269f3379b72f7.tar.gz
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/gsttask.c')
-rw-r--r--gst/gsttask.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/gsttask.c b/gst/gsttask.c
index 0dc90de34f..b376b0b4af 100644
--- a/gst/gsttask.c
+++ b/gst/gsttask.c
@@ -125,7 +125,7 @@ gst_task_class_init (GstTaskClass * klass)
g_type_class_add_private (klass, sizeof (GstTaskPrivate));
- gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_task_finalize);
+ gobject_class->finalize = gst_task_finalize;
init_klass_pool (klass);
}