diff options
Diffstat (limited to 'common.zig')
-rw-r--r-- | common.zig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -31,7 +31,7 @@ pub const Setup = struct { var f = try std.fs.cwd().openFile(file, .{}); defer f.close(); - var c = try f.readToEndAlloc(res.a, std.math.maxInt(u32)); + const c = try f.readToEndAlloc(res.a, std.math.maxInt(u32)); res.input = c; return res; } |