summaryrefslogtreecommitdiff
path: root/Zend/zend_operators.h
diff options
context:
space:
mode:
authorAndrei Zmievski <andrei@php.net>2005-10-02 03:10:33 +0000
committerAndrei Zmievski <andrei@php.net>2005-10-02 03:10:33 +0000
commit1454bdfea40ff61490dcd0d12e3eb3bc9863d0aa (patch)
tree9dd2a0b0558656ec1b5995206ee6624c996180b2 /Zend/zend_operators.h
parentbfaf987363a0caa250777f13cbfb291dbd67b486 (diff)
downloadphp-git-1454bdfea40ff61490dcd0d12e3eb3bc9863d0aa.tar.gz
*** empty log message ***
Diffstat (limited to 'Zend/zend_operators.h')
-rw-r--r--Zend/zend_operators.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/Zend/zend_operators.h b/Zend/zend_operators.h
index 73b89bf319..4984117b91 100644
--- a/Zend/zend_operators.h
+++ b/Zend/zend_operators.h
@@ -346,12 +346,11 @@ END_EXTERN_C()
} \
} while (0); \
-#define convert_to_explicit_type_ex(ppzv, type) \
- if ((*ppzv)->type != type) { \
- SEPARATE_ZVAL_IF_NOT_REF(ppzv); \
- convert_to_explicit_type(*ppzv, type); \
- } \
-}
+#define convert_to_explicit_type_ex(ppzv, str_type) \
+ if ((*ppzv)->type != str_type) { \
+ SEPARATE_ZVAL_IF_NOT_REF(ppzv); \
+ convert_to_explicit_type(*ppzv, str_type); \
+ }
#define convert_to_boolean_ex(ppzv) convert_to_ex_master(ppzv, boolean, BOOL)
#define convert_to_long_ex(ppzv) convert_to_ex_master(ppzv, long, LONG)