Skip to content

Commit d3ce9ec

Browse files
committed
revert types
1 parent c23a79d commit d3ce9ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Zend/zend_opcode.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -710,8 +710,8 @@ static void zend_check_finally_breakout(zend_op_array *op_array, uint32_t op_num
710710
}
711711

712712
static uint32_t zend_get_brk_cont_target(const zend_op *opline) {
713-
uint32_t nest_levels = opline->op2.num;
714-
uint32_t array_offset = opline->op1.num;
713+
int nest_levels = opline->op2.num;
714+
int array_offset = opline->op1.num;
715715
zend_brk_cont_element *jmp_to;
716716
do {
717717
jmp_to = &CG(context).brk_cont_array[array_offset];

0 commit comments

Comments
 (0)