diff options
Diffstat (limited to 'Zend/zend_compile.c')
-rw-r--r-- | Zend/zend_compile.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index aa1853aff7..90679c8cc9 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -4572,12 +4572,12 @@ void zend_compile_break_continue(zend_ast *ast) /* {{{ */ if (depth == 1) { zend_error(E_WARNING, "\"continue\" targeting switch is equivalent to \"break\". " \ - "Did you mean to use \"continue %d\"?", + "Did you mean to use \"continue " ZEND_LONG_FMT "\"?", depth + 1); } else { zend_error(E_WARNING, - "\"continue %d\" targeting switch is equivalent to \"break %d\". " \ - "Did you mean to use \"continue %d\"?", + "\"continue " ZEND_LONG_FMT "\" targeting switch is equivalent to \"break " ZEND_LONG_FMT "\". " \ + "Did you mean to use \"continue " ZEND_LONG_FMT "\"?", depth, depth, depth + 1); } } |