aboutsummaryrefslogtreecommitdiff
path: root/lib/std/os/linux
diff options
context:
space:
mode:
authorJoran Dirk Greef <joran@ronomon.com>2020-11-02 09:55:25 +0200
committerJoran Dirk Greef <joran@ronomon.com>2020-11-02 09:55:25 +0200
commit067bd7e424a8e83c49bd4f3f0da5ff0ff75dc3bc (patch)
tree81621fc2e61c099273f0f0a35539343199b86e45 /lib/std/os/linux
parent9dec3108260638dd81dd5110bcf87d58f6834d25 (diff)
downloadzig-067bd7e424a8e83c49bd4f3f0da5ff0ff75dc3bc.tar.gz
zig-067bd7e424a8e83c49bd4f3f0da5ff0ff75dc3bc.zip
Switch back to writing Zig
Diffstat (limited to 'lib/std/os/linux')
-rw-r--r--lib/std/os/linux/test.zig4
1 files 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;
},
}