Get rid of gcc warning.
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index 209ec32..818572f 100644
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -5542,7 +5542,8 @@
 						   this is instance-mode super 
 						   (See SF ID #743627)
 						*/
-						(su->obj==su->obj_type 
+						(su->obj == (PyObject *)
+							    su->obj_type 
 							? (PyObject *)NULL 
 							: su->obj),
 						(PyObject *)starttype);