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;