diff options
author | 2022-04-03 22:24:09 -0700 | |
---|---|---|
committer | 2022-04-03 22:24:09 -0700 | |
commit | 25267397f6f604bcd700731d8fc5e9bbb1dbc80d (patch) | |
tree | 881aed507ce4b779a182f2e5d2aac26020e5a031 /src | |
parent | 931e461c87845d6aae5b48cab8a6596d6b0bab41 (diff) | |
download | bun-25267397f6f604bcd700731d8fc5e9bbb1dbc80d.tar.gz bun-25267397f6f604bcd700731d8fc5e9bbb1dbc80d.tar.zst bun-25267397f6f604bcd700731d8fc5e9bbb1dbc80d.zip |
pico headers are now mutable
Diffstat (limited to 'src')
-rw-r--r-- | src/deps/picohttp.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/deps/picohttp.zig b/src/deps/picohttp.zig index 6c00c185b..d822b5d73 100644 --- a/src/deps/picohttp.zig +++ b/src/deps/picohttp.zig @@ -91,7 +91,7 @@ pub const Response = struct { minor_version: usize, status_code: usize, status: []const u8, - headers: []const Header, + headers: []Header, bytes_read: c_int = 0, pub fn format(self: Response, comptime _: []const u8, _: fmt.FormatOptions, writer: anytype) !void { |