From 34951666f74f8b91b68d6f6435b4b618fd8da60a Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Wed, 10 Feb 2021 20:55:47 -0800 Subject: [PATCH] util/module: increase sum buffer max size --- src/util/module.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/module.zig b/src/util/module.zig index 2917bc8dba23013a6f5050b7f7036b4fd497af37..f8bbe19bb105c39e5e1d787f9b2ee78ee4afe572 100644 --- a/src/util/module.zig +++ b/src/util/module.zig @@ -64,7 +64,7 @@ pub const Module = struct { const abs_path = try u.concat(&[_][]const u8{cdpath, "/", self.clean_path, "/", item}); const file = try std.fs.cwd().openFile(abs_path, .{}); defer file.close(); - const input = try file.reader().readAllAlloc(gpa, u.mb); + const input = try file.reader().readAllAlloc(gpa, u.mb*100); h.update(input); } var out: [32]u8 = undefined; -- 2.54.0