aboutsummaryrefslogtreecommitdiff
path: root/src/nix/hash.cc
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2020-08-07 14:44:47 +0000
committerJohn Ericson <John.Ericson@Obsidian.Systems>2020-08-07 14:44:47 +0000
commit39ae9a3d4a96ca4a5460c1b6264e77e71c3aad5f (patch)
tree1f91c2016b03146f35b02b4c575d708190719a03 /src/nix/hash.cc
parent3537670fefab6c65b4b87837112d64931dcda4cf (diff)
parent61464478427c4106ce20c1e61bfd5f53f3f49f37 (diff)
Merge remote-tracking branch 'upstream/master' into fix-and-ci-static-builds
Diffstat (limited to 'src/nix/hash.cc')
-rw-r--r--src/nix/hash.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/hash.cc b/src/nix/hash.cc
index 3c117c29b..52e41e50c 100644
--- a/src/nix/hash.cc
+++ b/src/nix/hash.cc
@@ -107,7 +107,7 @@ struct CmdToBase : Command
void run() override
{
for (auto s : args)
- logger->stdout_(Hash(s, ht).to_string(base, base == SRI));
+ logger->stdout_(Hash::parseAny(s, ht).to_string(base, base == SRI));
}
};