summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Zend/zend_variables.h2
1 files changed, 1 insertions, 1 deletions
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()