Skip to content

Commit 2c7b399

Browse files
authored
Merge pull request #952 from lightpanda-io/fix_compilation_error
Fix compilation error
2 parents af4066d + 7f47692 commit 2c7b399

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/http/Client.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ pub const Transfer = struct {
620620
// redirectionCookies manages cookies during redirections handled by Curl.
621621
// It sets the cookies from the current response to the cookie jar.
622622
// It also immediately sets cookies for the following request.
623-
fn redirectionCookies(arena: Allocator, easy: *c.CURL, cookie_jar: *storage.CookieJar, origin: *const std.Uri) !void {
623+
fn redirectionCookies(arena: Allocator, easy: *c.CURL, cookie_jar: *CookieJar, origin: *const std.Uri) !void {
624624
// retrieve cookies from the redirect's response.
625625
var i: usize = 0;
626626
while (true) {

0 commit comments

Comments
 (0)