mirror of
https://github.com/php/php-src.git
synced 2024-12-20 07:20:33 +08:00
Fix #64749 (warning: cast from pointer to integer of different size)
This commit is contained in:
parent
b2ef8672c7
commit
9155d17fef
@ -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)++);
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user