From 41c068c533a0312fb435b4c2d17a8949c7d76300 Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Mon, 21 Nov 2005 17:49:21 +0000 Subject: gst_object_unref, not g_object_unref Original commit message from CVS: gst_object_unref, not g_object_unref --- gst/auparse/gstauparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gst/auparse') diff --git a/gst/auparse/gstauparse.c b/gst/auparse/gstauparse.c index 57d0f418..f3880341 100644 --- a/gst/auparse/gstauparse.c +++ b/gst/auparse/gstauparse.c @@ -171,7 +171,7 @@ gst_auparse_dispose (GObject * object) GstAuParse *au = GST_AUPARSE (object); if (au->adapter != NULL) { - g_object_unref (au->adapter); + gst_object_unref (au->adapter); au->adapter = NULL; } G_OBJECT_CLASS (parent_class)->dispose (object); -- cgit