]> granicus.if.org Git - php/commitdiff
- WS fix
authorAndi Gutmans <andi@php.net>
Fri, 28 Jun 2002 15:30:03 +0000 (15:30 +0000)
committerAndi Gutmans <andi@php.net>
Fri, 28 Jun 2002 15:30:03 +0000 (15:30 +0000)
Zend/zend_operators.c

index 4309e78e3c18d0a442f761e932c15a1eca8a26ea..fca3b5618c07d9bbd5f7607cd0aa933d8f7b43a2 100644 (file)
@@ -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;
                        }