From: Xinchen Hui Date: Mon, 25 Feb 2019 07:04:04 +0000 (+0800) Subject: Fixed compiler warning X-Git-Tag: php-7.3.4RC1~55 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4ac954ac3e1217864e592ebb1531b4f0f31e2264;p=php Fixed compiler warning --- 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); } }