fix: correct namespace
All checks were successful
Zig Project Action / Lint, Spell-check and test zig project (push) Successful in 1m1s

This commit is contained in:
2026-01-06 23:07:41 +01:00
parent 4147c47f7e
commit b868bb1300

View File

@@ -25,7 +25,7 @@ fn logFn(
}, 0o600) catch @panic("Could not append to log file"); }, 0o600) catch @panic("Could not append to log file");
defer std.posix.close(fd); defer std.posix.close(fd);
var buffer = std.Io.File.Writer.init(.{ .handle = fd }, std.debug.debug_threaded_io, &buf); var buffer = std.Io.File.Writer.init(.{ .handle = fd }, std.Options.debug_io, &buf);
var writer = &buffer.interface; var writer = &buffer.interface;
defer writer.flush() catch unreachable; defer writer.flush() catch unreachable;