mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
Provide default value for id to fix warning
This commit is contained in:
parent
b66381e8d8
commit
28c39c370c
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ struct UnkeyedValidPathInfo
|
||||||
StorePathSet references;
|
StorePathSet references;
|
||||||
time_t registrationTime = 0;
|
time_t registrationTime = 0;
|
||||||
uint64_t narSize = 0; // 0 = unknown
|
uint64_t narSize = 0; // 0 = unknown
|
||||||
uint64_t id; // internal use only
|
uint64_t id = 0; // internal use only
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether the path is ultimately trusted, that is, it's a
|
* Whether the path is ultimately trusted, that is, it's a
|
||||||
|
|
Loading…
Reference in a new issue