Skip to content

Commit 13909e5

Browse files
committed
Fixed incorrect zend_bool type usage
1 parent 88355dd commit 13909e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/jit/zend_jit_x86.dasc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10517,7 +10517,7 @@ static int zend_jit_recv(dasm_State **Dst, const zend_op *opline, const zend_op_
1051710517
static int zend_jit_recv_init(dasm_State **Dst, const zend_op *opline, const zend_op_array *op_array, zend_bool is_last, int may_throw)
1051810518
{
1051910519
zend_arg_info *arg_info = NULL;
10520-
zend_bool has_slow = 0;
10520+
uint8_t has_slow = 0;
1052110521
uint32_t arg_num = opline->op1.num;
1052210522
zval *zv = RT_CONSTANT(opline, opline->op2);
1052310523
zend_jit_addr res_addr = ZEND_ADDR_MEM_ZVAL(ZREG_FP, opline->result.var);

0 commit comments

Comments
 (0)