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 @@ -4316,12 +4316,12 @@ void zend_compile_break_continue(zend_ast *ast) /* {{{ */
4316
4316
if (depth == 1 ) {
4317
4317
zend_error (E_WARNING ,
4318
4318
"\"continue\" targeting switch is equivalent to \"break\". " \
4319
- "Did you mean to use \"continue %d \"?" ,
4319
+ "Did you mean to use \"continue " ZEND_LONG_FMT " \"?" ,
4320
4320
depth + 1 );
4321
4321
} else {
4322
4322
zend_error (E_WARNING ,
4323
- "\"continue %d \" targeting switch is equivalent to \"break %d \". " \
4324
- "Did you mean to use \"continue %d \"?" ,
4323
+ "\"continue " ZEND_LONG_FMT " \" targeting switch is equivalent to \"break " ZEND_LONG_FMT " \". " \
4324
+ "Did you mean to use \"continue " ZEND_LONG_FMT " \"?" ,
4325
4325
depth , depth , depth + 1 );
4326
4326
}
4327
4327
}
You can’t perform that action at this time.
0 commit comments