From: Nikita Popov Date: Sat, 30 Dec 2017 17:18:50 +0000 (+0100) Subject: Fix typos X-Git-Tag: php-7.3.0alpha1~719 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ffc0a1732232abf2a1b27fd61ef3b0a0a737849d;p=php Fix typos --- diff --git a/ext/opcache/Optimizer/zend_optimizer.c b/ext/opcache/Optimizer/zend_optimizer.c index 0c9eac1d78..9ca75624de 100644 --- a/ext/opcache/Optimizer/zend_optimizer.c +++ b/ext/opcache/Optimizer/zend_optimizer.c @@ -320,7 +320,7 @@ int zend_optimizer_update_op1_const(zend_op_array *op_array, case ZEND_FETCH_FUNC_ARG: TO_STRING_NOWARN(val); if (opline->opcode == ZEND_CONCAT && opline->op2_type == IS_CONST) { - opline->opcode == ZEND_FAST_CONCAT; + opline->opcode = ZEND_FAST_CONCAT; } /* break missing intentionally */ default: @@ -472,7 +472,7 @@ int zend_optimizer_update_op2_const(zend_op_array *op_array, case ZEND_FAST_CONCAT: TO_STRING_NOWARN(val); if (opline->opcode == ZEND_CONCAT && opline->op1_type == IS_CONST) { - opline->opcode == ZEND_FAST_CONCAT; + opline->opcode = ZEND_FAST_CONCAT; } /* break missing intentionally */ default: