diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2023-01-06 12:24:20 -0500 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2023-01-06 12:24:20 -0500 |
commit | 6a168254ce068c067259c913ee7d6ee2e0d1dc7e (patch) | |
tree | 7fd9315876cdca5224a978cba8b0a792bbd6710d /src/nix-store | |
parent | 8623143921f8683b88d46aaebe9f707e5b9a912b (diff) |
Use named field initialization for references
Diffstat (limited to 'src/nix-store')
-rw-r--r-- | src/nix-store/nix-store.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc index 75fa08551..5cb5aa53a 100644 --- a/src/nix-store/nix-store.cc +++ b/src/nix-store/nix-store.cc @@ -220,7 +220,7 @@ static void opPrintFixedPath(Strings opFlags, Strings opArgs) .method = method, .hash = Hash::parseAny(hash, hashAlgo), }, - {}, + .references = {}, }))); } |