Switch back to writing Zig

master
Joran Dirk Greef 2020-11-02 09:55:25 +02:00
parent 9dec310826
commit 067bd7e424
1 changed files with 2 additions and 2 deletions

View File

@ -24,8 +24,8 @@ test "fallocate" {
0 => {},
linux.ENOSYS => return error.SkipZigTest,
linux.EOPNOTSUPP => return error.SkipZigTest,
else |errno| => {
std.debug.print("Unhandled Errno:" errno);
else => |errno| {
std.debug.print("Unhandled Errno: {}", .{ errno });
return error.SkipZigTest;
},
}