diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-07-26T19·25+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-07-26T19·25+0200 |
commit | ee22a91ab847f63a22466f3bf63e33ca29da9cfe (patch) | |
tree | 6808d04aeb5b66411014f252c1ee3c1f1e35d0d9 /src/libstore/derivations.cc | |
parent | 06bbfb6004942bfcddd930e746ee7a2bfe5c3872 (diff) |
makeFixedOutputPath(): Drop superfluous HashType argument
Diffstat (limited to 'src/libstore/derivations.cc')
-rw-r--r-- | src/libstore/derivations.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/derivations.cc b/src/libstore/derivations.cc index 5590b99b36fa..7dcf71d468df 100644 --- a/src/libstore/derivations.cc +++ b/src/libstore/derivations.cc @@ -9,7 +9,7 @@ namespace nix { -void DerivationOutput::parseHashInfo(bool & recursive, HashType & hashType, Hash & hash) const +void DerivationOutput::parseHashInfo(bool & recursive, Hash & hash) const { recursive = false; string algo = hashAlgo; @@ -19,7 +19,7 @@ void DerivationOutput::parseHashInfo(bool & recursive, HashType & hashType, Hash algo = string(algo, 2); } - hashType = parseHashType(algo); + HashType hashType = parseHashType(algo); if (hashType == htUnknown) throw Error(format("unknown hash algorithm ‘%1%’") % algo); |