summaryrefslogtreecommitdiff
path: root/gst/gsturi.c
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2005-06-28 09:59:01 +0000
committerAndy Wingo <wingo@pobox.com>2005-06-28 09:59:01 +0000
commitf8e79bdf867f94c6c80c5f43c60405659ed0be03 (patch)
treec5717a32e8d41a65b56cec6c03940e118dd29834 /gst/gsturi.c
parent5016035bc6a4c5dfafb4170b54597b6c9d52a597 (diff)
downloadgstreamer-f8e79bdf867f94c6c80c5f43c60405659ed0be03.tar.gz
*.c: Don't cast to GST_OBJECT when reffing or unreffing. Large source-munging commit!!!
Original commit message from CVS: 2005-06-28 Andy Wingo <wingo@pobox.com> * *.c: Don't cast to GST_OBJECT when reffing or unreffing. Large source-munging commit!!!
Diffstat (limited to 'gst/gsturi.c')
-rw-r--r--gst/gsturi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/gsturi.c b/gst/gsturi.c
index 6d75f3776e..1eeeb1e596 100644
--- a/gst/gsturi.c
+++ b/gst/gsturi.c
@@ -485,7 +485,7 @@ gst_element_make_from_uri (const GstURIType type, const gchar * uri,
if (gst_uri_handler_set_uri (handler, uri))
break;
- gst_object_unref (GST_OBJECT (ret));
+ gst_object_unref (ret);
ret = NULL;
}
walk = walk->next;