Fix #64749 (warning: cast from pointer to integer of different size)

This commit is contained in:
Xinchen Hui 2013-05-04 20:42:50 +08:00
parent b2ef8672c7
commit 9155d17fef

View File

@ -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)++);
}
/* }}} */