Commit 067bd7e424

Joran Dirk Greef <joran@ronomon.com>
2020-11-02 08:55:25
Switch back to writing Zig
1 parent 9dec310
Changed files (1)
lib
std
os
linux
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;
         },
     }