cast -> check, since we don't need the result. This also removes a warning when it fails, and since we check for that...

Original commit message from CVS:
cast -> check, since we don't need the result. This also removes a warning when it fails, and since we check for that ourselves, that's a good thing.
This commit is contained in:
Ronald S. Bultje 2003-09-29 14:32:22 +00:00
parent 5d1e64e379
commit 2cd09b6c68

View file

@ -154,7 +154,7 @@ gst_interface_check (gpointer from,
GstInterface *iface;
/* check cast, return FALSE if it fails, don't give a warning... */
if (!G_TYPE_CHECK_INSTANCE_CAST (from, type, GstInterface)) {
if (!G_TYPE_CHECK_INSTANCE_TYPE (from, type)) {
return FALSE;
}