diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2025-12-22 17:35:46 -0800 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2025-12-23 22:15:12 -0800 |
| commit | 33e302d67a80fe7d213b4c461dc41c91813db869 (patch) | |
| tree | 8943a954f5c245ed92b64e2168d1aa1bf9426715 /lib/init/src | |
| parent | 187d0a692de2f00e64a446548873f7a12d9ddb4f (diff) | |
| download | zig-33e302d67a80fe7d213b4c461dc41c91813db869.tar.gz zig-33e302d67a80fe7d213b4c461dc41c91813db869.zip | |
update remaining calls to std.Io.Threaded.init
Diffstat (limited to 'lib/init/src')
| -rw-r--r-- | lib/init/src/main.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/init/src/main.zig b/lib/init/src/main.zig index 9df441b564..865e6c5322 100644 --- a/lib/init/src/main.zig +++ b/lib/init/src/main.zig @@ -13,7 +13,7 @@ pub fn main() !void { const gpa = debug_allocator.allocator(); // In order to do I/O operations we must construct an `Io` instance. - var threaded: std.Io.Threaded = .init(gpa); + var threaded: std.Io.Threaded = .init(gpa, .{}); defer threaded.deinit(); const io = threaded.io(); |
