Skip to content

Commit 4ac954a

Browse files
committed
Fixed compiler warning
1 parent fb3f078 commit 4ac954a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Zend/zend_compile.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4572,12 +4572,12 @@ void zend_compile_break_continue(zend_ast *ast) /* {{{ */
45724572
if (depth == 1) {
45734573
zend_error(E_WARNING,
45744574
"\"continue\" targeting switch is equivalent to \"break\". " \
4575-
"Did you mean to use \"continue %d\"?",
4575+
"Did you mean to use \"continue " ZEND_LONG_FMT "\"?",
45764576
depth + 1);
45774577
} else {
45784578
zend_error(E_WARNING,
4579-
"\"continue %d\" targeting switch is equivalent to \"break %d\". " \
4580-
"Did you mean to use \"continue %d\"?",
4579+
"\"continue " ZEND_LONG_FMT "\" targeting switch is equivalent to \"break " ZEND_LONG_FMT "\". " \
4580+
"Did you mean to use \"continue " ZEND_LONG_FMT "\"?",
45814581
depth, depth, depth + 1);
45824582
}
45834583
}

0 commit comments

Comments
 (0)