From 7f47692ad460cc7e857a2e09039d938644a4a0a0 Mon Sep 17 00:00:00 2001 From: Karl Seguin Date: Wed, 20 Aug 2025 10:04:15 +0800 Subject: [PATCH] Fix compilation error bad auto merge? --- src/http/Client.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http/Client.zig b/src/http/Client.zig index 2f5fafe5..2301df36 100644 --- a/src/http/Client.zig +++ b/src/http/Client.zig @@ -620,7 +620,7 @@ pub const Transfer = struct { // redirectionCookies manages cookies during redirections handled by Curl. // It sets the cookies from the current response to the cookie jar. // It also immediately sets cookies for the following request. - fn redirectionCookies(arena: Allocator, easy: *c.CURL, cookie_jar: *storage.CookieJar, origin: *const std.Uri) !void { + fn redirectionCookies(arena: Allocator, easy: *c.CURL, cookie_jar: *CookieJar, origin: *const std.Uri) !void { // retrieve cookies from the redirect's response. var i: usize = 0; while (true) {