summaryrefslogtreecommitdiffstats
path: root/gst/auparse
diff options
context:
space:
mode:
authorMichael Smith <msmith@xiph.org>2005-11-21 17:49:21 +0000
committerMichael Smith <msmith@xiph.org>2005-11-21 17:49:21 +0000
commit41c068c533a0312fb435b4c2d17a8949c7d76300 (patch)
treea6f063b02d6db5b0cdc461cf21740d4233681ed6 /gst/auparse
parentb99bef3e5855ca02749f9f4643b77df4e172c439 (diff)
gst_object_unref, not g_object_unref
Original commit message from CVS: gst_object_unref, not g_object_unref
Diffstat (limited to 'gst/auparse')
-rw-r--r--gst/auparse/gstauparse.c2
1 files changed, 1 insertions, 1 deletions
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);