]> granicus.if.org Git - php/commitdiff
fix level of indirection
authorStanislav Malyshev <stas@php.net>
Tue, 31 Dec 2002 09:42:28 +0000 (09:42 +0000)
committerStanislav Malyshev <stas@php.net>
Tue, 31 Dec 2002 09:42:28 +0000 (09:42 +0000)
Zend/zend_object_handlers.h

index b541fba0236296071449593767b45010929eddcd..543aae0884cbc528e4b48c5368f2389f3b787769 100644 (file)
@@ -73,7 +73,7 @@ typedef struct _zend_object_handlers {
 
 extern zend_object_handlers std_object_handlers;
 
-#define IS_ZEND_STD_OBJECT(z)  ((z).type == IS_OBJECT && (Z_OBJ_HT_P((z))->get_class_entry != NULL))
+#define IS_ZEND_STD_OBJECT(z)  ((z).type == IS_OBJECT && (Z_OBJ_HT((z))->get_class_entry != NULL))
 #define HAS_CLASS_ENTRY(z) (Z_OBJ_HT(z)->get_class_entry != NULL)
 
 #endif