Ver código fonte

Fixes #10 (rounding issues)

Andrew Collington 9 anos atrás
pai
commit
c754879e5f
1 arquivos alterados com 1 adições e 3 exclusões
  1. 1 3
      index.php

+ 1 - 3
index.php

@@ -132,9 +132,7 @@ class OpCacheService
             ++$i;
         }
         return sprintf('%.'.$this->getOption('size_precision').'f%s%s',
-            number_format($size),
-            ($this->getOption('size_space') ? ' ' : ''),
-            $val[$i]
+            $size, ($this->getOption('size_space') ? ' ' : ''), $val[$i]
         );
     }