mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
fix stupidity bug in gstelement.c (which only crashes other computers :)
Original commit message from CVS: fix stupidity bug in gstelement.c (which only crashes other computers :)
This commit is contained in:
parent
78708234bd
commit
3ddbdba789
1 changed files with 1 additions and 4 deletions
|
@ -152,10 +152,7 @@ gst_element_class_init (GstElementClass *klass)
|
||||||
static void
|
static void
|
||||||
gst_element_base_class_init (gpointer g_class)
|
gst_element_base_class_init (gpointer g_class)
|
||||||
{
|
{
|
||||||
GstElementClass *klass = GST_ELEMENT_CLASS (klass);
|
GObjectClass *gobject_class = G_OBJECT_CLASS (g_class);
|
||||||
GObjectClass *gobject_class;
|
|
||||||
|
|
||||||
gobject_class = (GObjectClass*) klass;
|
|
||||||
|
|
||||||
gobject_class->set_property = GST_DEBUG_FUNCPTR(gst_element_real_set_property);
|
gobject_class->set_property = GST_DEBUG_FUNCPTR(gst_element_real_set_property);
|
||||||
gobject_class->get_property = GST_DEBUG_FUNCPTR(gst_element_real_get_property);
|
gobject_class->get_property = GST_DEBUG_FUNCPTR(gst_element_real_get_property);
|
||||||
|
|
Loading…
Reference in a new issue