Plan9: fix amount to say included line count is

Not sure why this was working before...
This commit is contained in:
Jacob G-W 2022-01-06 22:58:53 -05:00
parent ab400ad624
commit 398c0b10e4

View File

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