sas Thu, 12 Aug 2010 17:28:08 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=302152
Log: - fix cast Changed paths: U php/php-src/branches/PHP_5_3/Zend/zend_variables.h Modified: php/php-src/branches/PHP_5_3/Zend/zend_variables.h =================================================================== --- php/php-src/branches/PHP_5_3/Zend/zend_variables.h 2010-08-12 17:27:23 UTC (rev 302151) +++ php/php-src/branches/PHP_5_3/Zend/zend_variables.h 2010-08-12 17:28:08 UTC (rev 302152) @@ -84,7 +84,7 @@ # define zval_shared_property_ctor zval_add_ref #endif -#define zval_copy_property_ctor(ce) ((copy_ctor_func_t) (ce)->type == ZEND_INTERNAL_CLASS ? zval_shared_property_ctor : zval_add_ref) +#define zval_copy_property_ctor(ce) ((copy_ctor_func_t) (((ce)->type == ZEND_INTERNAL_CLASS) ? zval_shared_property_ctor : zval_add_ref)) END_EXTERN_C()
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php