aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler/objcopy.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 /lib/compiler/objcopy.zig
parent187d0a692de2f00e64a446548873f7a12d9ddb4f (diff)
downloadzig-33e302d67a80fe7d213b4c461dc41c91813db869.tar.gz
zig-33e302d67a80fe7d213b4c461dc41c91813db869.zip
update remaining calls to std.Io.Threaded.init
Diffstat (limited to 'lib/compiler/objcopy.zig')
-rw-r--r--lib/compiler/objcopy.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler/objcopy.zig b/lib/compiler/objcopy.zig
index 2e272b074b..600166288c 100644
--- a/lib/compiler/objcopy.zig
+++ b/lib/compiler/objcopy.zig
@@ -148,7 +148,7 @@ fn cmdObjCopy(gpa: Allocator, arena: Allocator, args: []const []const u8) !void
const input = opt_input orelse fatal("expected input parameter", .{});
const output = opt_output orelse fatal("expected output parameter", .{});
- var threaded: std.Io.Threaded = .init(gpa);
+ var threaded: std.Io.Threaded = .init(gpa, .{});
defer threaded.deinit();
const io = threaded.io();