authorgravatar for hello@nektro.netMeghan <hello@nektro.net> 2020-12-01 04:02:56 -08:00
committergravatar for hello@nektro.netMeghan <hello@nektro.net> 2020-12-01 04:02:56 -08:00
log5adee4566ea66ebeb00cf1697918ab02c3744822
tree46f153e4f4c894697fb06a63057aef06c4c8b256
parent5aefcbf273f410c87a3d44104f5f3cf038d637eb

make get_hash specify the hash provided


1 files changed, 1 insertions(+), 1 deletions(-)

src/util/module.zig+1-1
...@@ -71,7 +71,7 @@ pub const Module = struct {...@@ -71,7 +71,7 @@ pub const Module = struct {
71 }71 }
72 var out: [32]u8 = undefined;72 var out: [32]u8 = undefined;
73 h.final(&out);73 h.final(&out);
74 const hex = try std.fmt.allocPrint(gpa, "{x}", .{out});74 const hex = try std.fmt.allocPrint(gpa, "blake3-{x}", .{out});
75 return hex;75 return hex;
76 }76 }
7777