authorgravatar for kcbanner@gmail.comCasey Banner <kcbanner@gmail.com> 2022-12-13 01:51:19-05:00
committergravatar for kcbanner@gmail.comCasey Banner <kcbanner@gmail.com> 2023-01-01 16:44:28-05:00
log3d4ff4fdda9ec2432f0496fb3e6fa6789d882140
tree7e02274cb80befbd1069fdfd906c129569b49d3b
parent7fb3683c32fc24d12452f49e0c1639531e57c47d

cbe: 32 bit fixup for update-zig1


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

src/codegen/c.zig+1-1
...@@ -7083,7 +7083,7 @@ fn StringLiteral(comptime WriterType: type) type {...@@ -7083,7 +7083,7 @@ fn StringLiteral(comptime WriterType: type) type {
7083 const max_len = 16380 - max_char_len;7083 const max_len = 16380 - max_char_len;
70847084
7085 return struct {7085 return struct {
7086 cur_len: usize = 0,7086 cur_len: u64 = 0,
7087 counting_writer: std.io.CountingWriter(WriterType),7087 counting_writer: std.io.CountingWriter(WriterType),
70887088
7089 pub const Error = WriterType.Error;7089 pub const Error = WriterType.Error;