diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2025-12-11 22:35:55 -0800 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2025-12-23 22:15:09 -0800 |
| commit | e1cf753db72425fd944f6fe9f2a991fb1de3f942 (patch) | |
| tree | 4b9c33aa2cd4e0da5ad7e5fec9f0de45c6747507 /lib/std/Io/Kqueue.zig | |
| parent | 68621afd2e203d82b6f53bf4ede951827fa98db8 (diff) | |
| download | zig-e1cf753db72425fd944f6fe9f2a991fb1de3f942.tar.gz zig-e1cf753db72425fd944f6fe9f2a991fb1de3f942.zip | |
std: update fchmodat tests
Diffstat (limited to 'lib/std/Io/Kqueue.zig')
| -rw-r--r-- | lib/std/Io/Kqueue.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/std/Io/Kqueue.zig b/lib/std/Io/Kqueue.zig index e34c862ae9..9f9403d5ad 100644 --- a/lib/std/Io/Kqueue.zig +++ b/lib/std/Io/Kqueue.zig @@ -873,7 +873,7 @@ pub fn io(k: *Kqueue) Io { .dirMakePath = dirMakePath, .dirMakeOpenPath = dirMakeOpenPath, .dirStat = dirStat, - .dirStatPath = dirStatPath, + .dirStatFile = dirStatFile, .fileStat = fileStat, .dirAccess = dirAccess, @@ -1144,7 +1144,7 @@ fn dirStat(userdata: ?*anyopaque, dir: Dir) Dir.StatError!Dir.Stat { _ = dir; @panic("TODO"); } -fn dirStatPath(userdata: ?*anyopaque, dir: Dir, sub_path: []const u8, options: Dir.StatPathOptions) Dir.StatPathError!File.Stat { +fn dirStatFile(userdata: ?*anyopaque, dir: Dir, sub_path: []const u8, options: Dir.StatPathOptions) Dir.StatFileError!File.Stat { const k: *Kqueue = @ptrCast(@alignCast(userdata)); _ = k; _ = dir; |
