cast -> check, since we don't need the result. This also removes a warning when it...
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>
Mon, 29 Sep 2003 14:32:22 +0000 (14:32 +0000)
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>
Mon, 29 Sep 2003 14:32:22 +0000 (14:32 +0000)
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.

gst/gstinterface.c

index 862a37f..d91d605 100644 (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;
   }