authorgravatar for 124872+jedisct1@users.noreply.github.comFrank Denis <124872+jedisct1@users.noreply.github.com> 2020-08-21 01:15:17+02:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-08-20 19:21:10-04:00
logeef111fe78d7b246b634a07561082a6fcf947e09
treeb4da5feaf9f4c738807736d3d7d3900b4dfa900f
parent21106b9c9f9287a7f4477ac9a0b1b8ad04e245c3

Fix missing init() update in std/build/write_file.zig


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

lib/std/build/write_file.zig+1-1
...@@ -58,7 +58,7 @@ pub const WriteFileStep = struct {...@@ -58,7 +58,7 @@ pub const WriteFileStep = struct {
58 // TODO port the cache system from stage1 to zig std lib. Until then we use blake2b58 // TODO port the cache system from stage1 to zig std lib. Until then we use blake2b
59 // directly and construct the path, and no "cache hit" detection happens; the files59 // directly and construct the path, and no "cache hit" detection happens; the files
60 // are always written.60 // are always written.
61 var hash = std.crypto.hash.blake2.Blake2b384.init();61 var hash = std.crypto.hash.blake2.Blake2b384.init(.{});
6262
63 // Random bytes to make WriteFileStep unique. Refresh this with63 // Random bytes to make WriteFileStep unique. Refresh this with
64 // new random bytes when WriteFileStep implementation is modified64 // new random bytes when WriteFileStep implementation is modified