From 25267397f6f604bcd700731d8fc5e9bbb1dbc80d Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Sun, 3 Apr 2022 22:24:09 -0700 Subject: [PATCH] pico headers are now mutable --- src/deps/picohttp.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/deps/picohttp.zig b/src/deps/picohttp.zig index 6c00c185b1..d822b5d731 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 {