aboutsummaryrefslogtreecommitdiff
path: root/src/nix/make-content-addressable.cc
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2020-07-27 18:40:57 +0200
committerGitHub <noreply@github.com>2020-07-27 18:40:57 +0200
commit86805a2c0a25f5ceefac0d64e64ba57ace73b7f5 (patch)
treec9b28ba4c468446911f8bc5411933a334b1fe184 /src/nix/make-content-addressable.cc
parenta5f7d310dd10fe86b6f6aa1c2771c30f113741d4 (diff)
parent43f2bd8dc5950c38a817242884870f344a84a291 (diff)
Merge pull request #3738 from obsidiansystems/hash-always-has-type
Hash always has a valid type
Diffstat (limited to 'src/nix/make-content-addressable.cc')
-rw-r--r--src/nix/make-content-addressable.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/make-content-addressable.cc b/src/nix/make-content-addressable.cc
index 712043978..2fe2e2fb2 100644
--- a/src/nix/make-content-addressable.cc
+++ b/src/nix/make-content-addressable.cc
@@ -84,7 +84,7 @@ struct CmdMakeContentAddressable : StorePathsCommand, MixJSON
info.narSize = sink.s->size();
info.ca = FixedOutputHash {
.method = FileIngestionMethod::Recursive,
- .hash = info.narHash,
+ .hash = *info.narHash,
};
if (!json)