summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/filter/filter_private.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/filter/filter_private.h b/ext/filter/filter_private.h
index 51b88e2ee7..4f52d4bbcb 100644
--- a/ext/filter/filter_private.h
+++ b/ext/filter/filter_private.h
@@ -114,10 +114,10 @@
#define PHP_FILTER_GET_LONG_OPT(zv, opt) { \
if (Z_TYPE_PP(zv) != IS_LONG) { \
- zval tmp = **zv; \
- zval_copy_ctor(&tmp); \
- convert_to_long(&tmp); \
- opt = Z_LVAL(tmp); \
+ zval ___tmp = **zv; \
+ zval_copy_ctor(&___tmp); \
+ convert_to_long(&___tmp); \
+ opt = Z_LVAL(___tmp); \
} else { \
opt = Z_LVAL_PP(zv); \
} \