diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-02-24T16·33+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-02-24T16·44+0100 |
commit | 28e7e29abdcdaf60ba8a5fad3738fe4a8f3db9a8 (patch) | |
tree | 12755f285c04a9b83ec0d304e8776cbe0ca602a2 /src/nix-collect-garbage | |
parent | 5a64e66268471d2141e5b5c72b9658644c113414 (diff) |
Eliminate reserveSpace flag
Diffstat (limited to 'src/nix-collect-garbage')
-rw-r--r-- | src/nix-collect-garbage/nix-collect-garbage.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix-collect-garbage/nix-collect-garbage.cc b/src/nix-collect-garbage/nix-collect-garbage.cc index b9ccafb751c1..3aa348581b19 100644 --- a/src/nix-collect-garbage/nix-collect-garbage.cc +++ b/src/nix-collect-garbage/nix-collect-garbage.cc @@ -82,7 +82,7 @@ int main(int argc, char * * argv) // Run the actual garbage collector. if (!dryRun) { - auto store = openStore(false); + auto store = openStore(); options.action = GCOptions::gcDeleteDead; GCResults results; PrintFreed freed(true, results); |