From 34888f9abe69154bf91e9d280202679d56d0781b Mon Sep 17 00:00:00 2001 From: Iain Holmes Date: Fri, 14 Nov 2003 15:54:47 +0000 Subject: [PATCH] Make the type G_TYPE_POINTER instead of GST_TYPE_PLUGIN. Fixes a crash in gst-register Original commit message from CVS: Make the type G_TYPE_POINTER instead of GST_TYPE_PLUGIN. Fixes a crash in gst-register --- gst/gstregistry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gstregistry.c b/gst/gstregistry.c index 3632a11d00..df0f856279 100644 --- a/gst/gstregistry.c +++ b/gst/gstregistry.c @@ -85,7 +85,7 @@ gst_registry_class_init (GstRegistryClass *klass) g_signal_new ("plugin_added", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRegistryClass, plugin_added), NULL, NULL, gst_marshal_VOID__POINTER, G_TYPE_NONE, 1, - GST_TYPE_PLUGIN); + G_TYPE_POINTER); gobject_class->dispose = NULL; }