Skip to content

Commit 7795916

Browse files
committed
apply review comments
1 parent 0e2a3d8 commit 7795916

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/http/Client.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pub const Headers = Http.Headers;
2424
const Notification = @import("../notification.zig").Notification;
2525
const storage = @import("../browser/storage/storage.zig");
2626

27-
const urlStitch = @import("../url.zig").URL.stitch;
27+
const urlStitch = @import("../url.zig").stitch;
2828

2929
const c = Http.c;
3030

@@ -598,7 +598,7 @@ pub const Transfer = struct {
598598
// redirectionCookies manages cookies during redirections handled by Curl.
599599
// It sets the cookies from the current response to the cookie jar.
600600
// It also immediately sets cookies for the following request.
601-
fn redirectionCookies(arena: std.mem.Allocator, easy: *c.CURL, cookie_jar: *storage.CookieJar, origin: *const std.Uri) !void {
601+
fn redirectionCookies(arena: Allocator, easy: *c.CURL, cookie_jar: *storage.CookieJar, origin: *const std.Uri) !void {
602602
// retrieve cookies from the redirect's response.
603603
var i: usize = 0;
604604
while (true) {

0 commit comments

Comments
 (0)