mirror of
https://github.com/NixOS/nix
synced 2025-06-28 17:51:15 +02:00
* 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').
This commit is contained in:
parent
92f525ecf4
commit
5dd8fb2069
4 changed files with 8 additions and 10 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue