diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-05-15T09·33+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-05-15T09·33+0200 |
commit | 84813af5b938246d9a4a785dfb08b86383ef62ae (patch) | |
tree | 15d15ea898fb643bcada061b41d78783e8010a14 /src/nix-store | |
parent | 690adeb03de039551c4d8b5b4e7dda21c9c8f9b9 (diff) |
nix-store --optimise: Remove bogus statistics
Diffstat (limited to 'src/nix-store')
-rw-r--r-- | src/nix-store/nix-store.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc index 341a4f6776f4..5da401c77fd2 100644 --- a/src/nix-store/nix-store.cc +++ b/src/nix-store/nix-store.cc @@ -801,11 +801,9 @@ static void opRepairPath(Strings opFlags, Strings opArgs) static void showOptimiseStats(OptimiseStats & stats) { printMsg(lvlError, - format("%1% freed by hard-linking %2% files; there are %3% files with equal contents out of %4% files in total") + format("%1% freed by hard-linking %2% files") % showBytes(stats.bytesFreed) - % stats.filesLinked - % stats.sameContents - % stats.totalFiles); + % stats.filesLinked); } |