File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4572,12 +4572,12 @@ void zend_compile_break_continue(zend_ast *ast) /* {{{ */
4572
4572
if (depth == 1 ) {
4573
4573
zend_error (E_WARNING ,
4574
4574
"\"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 " \"?" ,
4576
4576
depth + 1 );
4577
4577
} else {
4578
4578
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 " \"?" ,
4581
4581
depth , depth , depth + 1 );
4582
4582
}
4583
4583
}
You can’t perform that action at this time.
0 commit comments