aboutsummaryrefslogtreecommitdiff
path: root/src/Package/Fetch/git.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2025-12-22 17:35:46 -0800
committerAndrew Kelley <andrew@ziglang.org>2025-12-23 22:15:12 -0800
commit33e302d67a80fe7d213b4c461dc41c91813db869 (patch)
tree8943a954f5c245ed92b64e2168d1aa1bf9426715 /src/Package/Fetch/git.zig
parent187d0a692de2f00e64a446548873f7a12d9ddb4f (diff)
downloadzig-33e302d67a80fe7d213b4c461dc41c91813db869.tar.gz
zig-33e302d67a80fe7d213b4c461dc41c91813db869.zip
update remaining calls to std.Io.Threaded.init
Diffstat (limited to 'src/Package/Fetch/git.zig')
-rw-r--r--src/Package/Fetch/git.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Package/Fetch/git.zig b/src/Package/Fetch/git.zig
index 0cb7e62300..18e15f457f 100644
--- a/src/Package/Fetch/git.zig
+++ b/src/Package/Fetch/git.zig
@@ -1702,7 +1702,7 @@ test "SHA-256 packfile indexing and checkout" {
pub fn main() !void {
const allocator = std.heap.smp_allocator;
- var threaded: Io.Threaded = .init(allocator);
+ var threaded: Io.Threaded = .init(allocator, .{});
defer threaded.deinit();
const io = threaded.io();