authorgravatar for jacoblevgw@gmail.comJacob G-W <jacoblevgw@gmail.com> 2022-01-06 22:58:53-05:00
committergravatar for jacoblevgw@gmail.comJacob G-W <jacoblevgw@gmail.com> 2022-01-06 22:58:53-05:00
log398c0b10e47f179b58195d4923985d4023854852
treeb4981a69d7a6421693b42588fb3c405a856d311a
parentab400ad62406e5ed7660d01d7065dc14081b10f6

Plan9: fix amount to say included line count is

Not sure why this was working before...

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

src/link/Plan9.zig+1-1
......@@ -203,7 +203,7 @@ fn putFn(self: *Plan9, decl: *Module.Decl, out: FnDeclOutput) !void {
203203 self.syms.items[fn_map_res.value_ptr.sym_index] = .{
204204 .type = .z,
205205 // just put a giant number, no source file will have this many newlines
206 .value = std.math.maxInt(u32),
206 .value = std.math.maxInt(u31),
207207 .name = &.{ 0, 0 },
208208 };
209209 }