From d6f3d4b50c25c99f38091cba85d57715cc24b5eb Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Wed, 9 Dec 2015 13:27:31 +0300 Subject: [PATCH] Fixed formating --- ext/opcache/Optimizer/zend_dump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/opcache/Optimizer/zend_dump.c b/ext/opcache/Optimizer/zend_dump.c index a83e3563b8..5966935070 100644 --- a/ext/opcache/Optimizer/zend_dump.c +++ b/ext/opcache/Optimizer/zend_dump.c @@ -188,7 +188,7 @@ void zend_dump_op_array(const zend_op_array *op_array, const zend_cfg *cfg, int fprintf(stderr, " to=(BB%d", b->successors[0]); printed = 1; if (b->successors[1] != -1) { - fprintf(stderr, " , BB%d", b->successors[1]); + fprintf(stderr, ", BB%d", b->successors[1]); } } if (printed) { -- 2.40.0