소스 검색

Fixes #10 (rounding issues)

Andrew Collington 9 년 전
부모
커밋
c754879e5f
1개의 변경된 파일1개의 추가작업 그리고 3개의 파일을 삭제
  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]
         );
     }