diff options
| author | Joran Dirk Greef <joran@ronomon.com> | 2020-11-02 09:55:25 +0200 |
|---|---|---|
| committer | Joran Dirk Greef <joran@ronomon.com> | 2020-11-02 09:55:25 +0200 |
| commit | 067bd7e424a8e83c49bd4f3f0da5ff0ff75dc3bc (patch) | |
| tree | 81621fc2e61c099273f0f0a35539343199b86e45 /lib/std/os/linux | |
| parent | 9dec3108260638dd81dd5110bcf87d58f6834d25 (diff) | |
| download | zig-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.zig | 4 |
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; }, } |
