zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 067bd7e424a8e83c49bd4f3f0da5ff0ff75dc3bc (tree)
parent 9dec3108260638dd81dd5110bcf87d58f6834d25
Author: Joran Dirk Greef <joran@ronomon.com>
Date:   Mon,  2 Nov 2020 09:55:25 +0200

Switch back to writing Zig

Diffstat:
Mlib/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 @@ -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; }, }