aboutsummaryrefslogtreecommitdiff
path: root/src/libutil/hash.cc
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2020-06-19 00:24:47 +0000
committerJohn Ericson <John.Ericson@Obsidian.Systems>2020-06-19 00:24:47 +0000
commit3fc58a96387f55226ad78a0d8e765a0f041e8da0 (patch)
tree25c30eb9772a00200cdbc0e858d5b71293e2835b /src/libutil/hash.cc
parent3f8dcfe3fd8372ee8fc1b3233c7e9982d1a6915d (diff)
Remove some `Base::` that crept in
Diffstat (limited to 'src/libutil/hash.cc')
-rw-r--r--src/libutil/hash.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/hash.cc b/src/libutil/hash.cc
index 7a8d091df..b187249e9 100644
--- a/src/libutil/hash.cc
+++ b/src/libutil/hash.cc
@@ -223,7 +223,7 @@ Hash newHashAllowEmpty(std::string hashStr, std::optional<HashType> ht)
if (!ht)
throw BadHash("empty hash requires explicit hash type");
Hash h(*ht);
- warn("found empty hash, assuming '%s'", h.to_string(Base::SRI, true));
+ warn("found empty hash, assuming '%s'", h.to_string(SRI, true));
return h;
} else
return Hash(hashStr, ht);