From 9155d17fefec7c2a71e1c0b8d8324d5e1fa43433 Mon Sep 17 00:00:00 2001 From: Xinchen Hui Date: Sat, 4 May 2013 20:42:50 +0800 Subject: [PATCH] Fix #64749 (warning: cast from pointer to integer of different size) --- Zend/zend_compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index 3c0d753b66..862f82da01 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -288,7 +288,7 @@ ZEND_API zend_bool zend_is_compiling(TSRMLS_D) /* {{{ */ static zend_uint get_temporary_variable(zend_op_array *op_array) /* {{{ */ { - return (zend_uint)EX_TMP_VAR_NUM(0, (op_array->T)++); + return (zend_uint)(zend_uintptr_t)EX_TMP_VAR_NUM(0, (op_array->T)++); } /* }}} */ -- 2.40.0