| author | |
| committer | |
| log | 067bd7e424a8e83c49bd4f3f0da5ff0ff75dc3bc |
| tree | 81621fc2e61c099273f0f0a35539343199b86e45 |
| parent | 9dec3108260638dd81dd5110bcf87d58f6834d25 |
1 files changed, 2 insertions(+), 2 deletions(-)
lib/std/os/linux/test.zig+2-2| ... | ... | @@ -24,8 +24,8 @@ test "fallocate" { |
| 24 | 24 | 0 => {}, |
| 25 | 25 | linux.ENOSYS => return error.SkipZigTest, |
| 26 | 26 | linux.EOPNOTSUPP => return error.SkipZigTest, |
| 27 | else |errno| => { | |
| 28 | std.debug.print("Unhandled Errno:" errno); | |
| 27 | else => |errno| { | |
| 28 | std.debug.print("Unhandled Errno: {}", .{ errno }); | |
| 29 | 29 | return error.SkipZigTest; |
| 30 | 30 | }, |
| 31 | 31 | } |