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/profile.cc | |
parent | 8623143921f8683b88d46aaebe9f707e5b9a912b (diff) |
Use named field initialization for references
Diffstat (limited to 'src/nix/profile.cc')
-rw-r--r-- | src/nix/profile.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/profile.cc b/src/nix/profile.cc index 024849e3b..614a37eba 100644 --- a/src/nix/profile.cc +++ b/src/nix/profile.cc @@ -205,7 +205,7 @@ struct ProfileManifest .method = FileIngestionMethod::Recursive, .hash = narHash, }, - { references }, + .references = { references }, }, }, narHash, |