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
This commit is contained in:
Benjamin Otte 2002-03-06 08:30:05 +00:00
parent 05d1d0cfd2
commit fbe0d0ba6b

View file

@ -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;
}