authorgravatar for joran@ronomon.comJoran Dirk Greef <joran@ronomon.com> 2020-11-02 09:55:25+02:00
committergravatar for joran@ronomon.comJoran Dirk Greef <joran@ronomon.com> 2020-11-02 09:55:25+02:00
log067bd7e424a8e83c49bd4f3f0da5ff0ff75dc3bc
tree81621fc2e61c099273f0f0a35539343199b86e45
parent9dec3108260638dd81dd5110bcf87d58f6834d25

Switch back to writing Zig


1 files changed, 2 insertions(+), 2 deletions(-)

lib/std/os/linux/test.zig+2-2
......@@ -24,8 +24,8 @@ test "fallocate" {
2424 0 => {},
2525 linux.ENOSYS => return error.SkipZigTest,
2626 linux.EOPNOTSUPP => return error.SkipZigTest,
27 else |errno| => {
28 std.debug.print("Unhandled Errno:" errno);
27 else => |errno| {
28 std.debug.print("Unhandled Errno: {}", .{ errno });
2929 return error.SkipZigTest;
3030 },
3131 }