Browse Source

Fixes #10 (rounding issues)

Andrew Collington 9 years ago
parent
commit
c754879e5f
1 changed files with 1 additions and 3 deletions
  1. 1 3
      index.php

+ 1 - 3
index.php

@@ -132,9 +132,7 @@ class OpCacheService
             ++$i;
             ++$i;
         }
         }
         return sprintf('%.'.$this->getOption('size_precision').'f%s%s',
         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]
         );
         );
     }
     }