From: Andi Gutmans Date: Fri, 28 Jun 2002 15:30:03 +0000 (+0000) Subject: - WS fix X-Git-Tag: php-4.3.0dev_zend2_alpha2~29 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1f6cadcd28b111a0cdbb2b01165b671d0c777996;p=php - WS fix --- diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c index 4309e78e3c..fca3b5618c 100644 --- a/Zend/zend_operators.c +++ b/Zend/zend_operators.c @@ -1534,8 +1534,8 @@ ZEND_API int decrement_function(zval *op1) double d = (double)lval; ZVAL_DOUBLE(op1, d-1); } else { - op1->value.lval = lval-1; - op1->type = IS_LONG; + op1->value.lval = lval-1; + op1->type = IS_LONG; } break; }