diff options
| author | Vexu <git@vexu.eu> | 2020-04-15 15:15:32 +0300 |
|---|---|---|
| committer | Vexu <git@vexu.eu> | 2020-04-15 15:15:32 +0300 |
| commit | ca3bf6e6aded2ced560803970a43e703b8c4bd11 (patch) | |
| tree | c6f1cffa8a6819faf6371cc766ac3ef5a8cb019b /lib/std/os.zig | |
| parent | a016fb8c627063e43b3694384e6082ef1e4ee11d (diff) | |
| download | zig-ca3bf6e6aded2ced560803970a43e703b8c4bd11.tar.gz zig-ca3bf6e6aded2ced560803970a43e703b8c4bd11.zip | |
translate-c cleanup and zig fmt
Diffstat (limited to 'lib/std/os.zig')
| -rw-r--r-- | lib/std/os.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/os.zig b/lib/std/os.zig index 481dd10489..8215494514 100644 --- a/lib/std/os.zig +++ b/lib/std/os.zig @@ -2584,7 +2584,7 @@ pub fn fstat(fd: fd_t) FStatError!Stat { } } -pub const FStatAtError = FStatError || error{NameTooLong, FileNotFound}; +pub const FStatAtError = FStatError || error{ NameTooLong, FileNotFound }; pub fn fstatat(dirfd: fd_t, pathname: []const u8, flags: u32) FStatAtError!Stat { const pathname_c = try toPosixPath(pathname); |
