1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-22 02:09:36 +01:00

Minor cleanup

Also, possible fix for #1310 on 32-bit systems.
This commit is contained in:
Eelco Dolstra 2017-04-10 11:12:45 +02:00
parent 95295482ea
commit 105f8ffc98
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
3 changed files with 5 additions and 15 deletions

View file

@ -26,14 +26,9 @@ struct Derivation;
struct OptimiseStats
{
unsigned long filesLinked;
unsigned long long bytesFreed;
unsigned long long blocksFreed;
OptimiseStats()
{
filesLinked = 0;
bytesFreed = blocksFreed = 0;
}
unsigned long filesLinked = 0;
unsigned long long bytesFreed = 0;
unsigned long long blocksFreed = 0;
};