diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-03-26T11·02+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-03-26T11·02+0000 |
commit | 5dd8fb20691c375778fd73bf613d4988df72fb50 (patch) | |
tree | 942d57bc30560be4675190ba0507b813a95a5b10 /src/libstore/store-api.hh | |
parent | 92f525ecf4ea8a9bd356acd1d3845074b1e5b918 (diff) |
* Don't use ULLONG_MAX in maxFreed - use 0 to mean "no limit".
18446744073709551615ULL breaks on GCC 3.3.6 (`integer constant is too large for "long" type').
Diffstat (limited to 'src/libstore/store-api.hh')
-rw-r--r-- | src/libstore/store-api.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstore/store-api.hh b/src/libstore/store-api.hh index 1c6f737285d6..bac2f6b9a26c 100644 --- a/src/libstore/store-api.hh +++ b/src/libstore/store-api.hh @@ -56,7 +56,8 @@ struct GCOptions /* For `gcDeleteSpecific', the paths to delete. */ PathSet pathsToDelete; - /* Stop after at least `maxFreed' bytes have been freed. */ + /* Stop after at least `maxFreed' bytes have been freed. 0 means + no limit. */ unsigned long long maxFreed; /* Stop after the number of hard links to the Nix store directory |