From 14edb68858a63c82de506514680eae41a5244d2a Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Thu, 12 Aug 2010 17:28:08 +0000 Subject: [PATCH] - fix cast --- Zend/zend_variables.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_variables.h b/Zend/zend_variables.h index 0849573039..3d8368c262 100644 --- a/Zend/zend_variables.h +++ b/Zend/zend_variables.h @@ -84,7 +84,7 @@ ZEND_API void zval_property_ctor(zval **); # 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() -- 2.40.0