summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Otte <otte@gnome.org>2002-03-06 08:30:05 +0000
committerBenjamin Otte <otte@gnome.org>2002-03-06 08:30:05 +0000
commitfbe0d0ba6bfcfebb069eb368bfe5163e1907adc2 (patch)
tree295897d4cc5478824457e37cca9eb065086f73f8
parent05d1d0cfd2a4af345b19a5089fcf2b5d4b0bda01 (diff)
downloadgstreamer-fbe0d0ba6bfcfebb069eb368bfe5163e1907adc2.tar.gz
warning: passing arg 1 of 'gst_caps_unref' from incompatible pointer type
Original commit message from CVS: warning: passing arg 1 of 'gst_caps_unref' from incompatible pointer type
-rw-r--r--gst/autoplug/gstsearchfuncs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/autoplug/gstsearchfuncs.c b/gst/autoplug/gstsearchfuncs.c
index 97ef02a4dd..4e5544d56c 100644
--- a/gst/autoplug/gstsearchfuncs.c
+++ b/gst/autoplug/gstsearchfuncs.c
@@ -64,7 +64,7 @@ gst_autoplag_caps_intersect (GstCaps *src, GstCaps *sink)
return FALSE;
/* hurrah, we can connect, now remove the intersection */
- gst_caps_unref (GST_OBJECT (caps));
+ gst_caps_unref (caps);
return TRUE;
}