aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/codegen/c.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen/c.zig b/src/codegen/c.zig
index 7bfa59ea41..9fc1966b1c 100644
--- a/src/codegen/c.zig
+++ b/src/codegen/c.zig
@@ -7083,7 +7083,7 @@ fn StringLiteral(comptime WriterType: type) type {
const max_len = 16380 - max_char_len;
return struct {
- cur_len: usize = 0,
+ cur_len: u64 = 0,
counting_writer: std.io.CountingWriter(WriterType),
pub const Error = WriterType.Error;