diff options
author | Dmitry Stogov <dmitry@zend.com> | 2016-10-20 01:17:55 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2016-10-20 01:17:55 +0300 |
commit | 03cd0f6b06f218fb60aba3898f9c29ab63a1680c (patch) | |
tree | 4c7e2695ee7b6c066c6a6748b62c58d1f02f4485 | |
parent | 65ea2500220cd5086f0532e80b944d77b65e9312 (diff) | |
parent | 565ce0d41d6e09f23a4fe062a5a0f0caf3ea727a (diff) | |
download | php-git-03cd0f6b06f218fb60aba3898f9c29ab63a1680c.tar.gz |
Merge branch 'PHP-7.1'
* PHP-7.1:
Fixed typo
-rw-r--r-- | ext/opcache/Optimizer/zend_dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/opcache/Optimizer/zend_dump.c b/ext/opcache/Optimizer/zend_dump.c index ed9b6a59d9..cd07309df8 100644 --- a/ext/opcache/Optimizer/zend_dump.c +++ b/ext/opcache/Optimizer/zend_dump.c @@ -735,7 +735,7 @@ static void zend_dump_block_info(const zend_cfg *cfg, int n, uint32_t dump_flags fprintf(stderr, " ; level=%d\n", b->level); } if (b->loop_header >= 0) { - fprintf(stderr, " ; loop_header=%d\n", b->level); + fprintf(stderr, " ; loop_header=%d\n", b->loop_header); } if (b->children >= 0) { int j = b->children; |