From b567db4155952e64b40e4e012088e4d71e1078cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Sun, 6 Jun 2010 18:00:22 +0200 Subject: [PATCH] ext: Don't use GST_DEBUG_FUNCPTR for GObject vfuncs --- gst-libs/gst/tag/gsttagmux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-libs/gst/tag/gsttagmux.c b/gst-libs/gst/tag/gsttagmux.c index 21cdb77ac9..7e8cf6e250 100644 --- a/gst-libs/gst/tag/gsttagmux.c +++ b/gst-libs/gst/tag/gsttagmux.c @@ -99,7 +99,7 @@ gst_tag_lib_mux_class_init (GstTagLibMuxClass * klass) gobject_class = (GObjectClass *) klass; gstelement_class = (GstElementClass *) klass; - gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_tag_lib_mux_finalize); + gobject_class->finalize = gst_tag_lib_mux_finalize; gstelement_class->change_state = GST_DEBUG_FUNCPTR (gst_tag_lib_mux_change_state); }