From 398c0b10e47f179b58195d4923985d4023854852 Mon Sep 17 00:00:00 2001 From: Jacob G-W Date: Thu, 6 Jan 2022 22:58:53 -0500 Subject: [PATCH] Plan9: fix amount to say included line count is Not sure why this was working before... --- src/link/Plan9.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/link/Plan9.zig b/src/link/Plan9.zig index 557d633361..200ac5e568 100644 --- a/src/link/Plan9.zig +++ b/src/link/Plan9.zig @@ -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 }, }; }