From 067bd7e424a8e83c49bd4f3f0da5ff0ff75dc3bc Mon Sep 17 00:00:00 2001 From: Joran Dirk Greef Date: Mon, 2 Nov 2020 09:55:25 +0200 Subject: [PATCH] Switch back to writing Zig --- lib/std/os/linux/test.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/std/os/linux/test.zig b/lib/std/os/linux/test.zig index e57ef3a6e4..f0c223e3fb 100644 --- a/lib/std/os/linux/test.zig +++ b/lib/std/os/linux/test.zig @@ -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; }, }