commit 22c4fbdf16ce67bdcffc33a5319e3734f880e002 (tree)
parent c6cb5f691dce18b2c5b50fac8b3a770f0c2965ba
Author: Brandon Freeman <24freemanb@gmail.com>
Date: Fri, 13 Mar 2026 21:17:34 -0400
fix: chdir on uring
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/std/Io/Uring.zig b/lib/std/Io/Uring.zig
@@ -4199,7 +4199,7 @@ fn processSetCurrentPath(userdata: ?*anyopaque, dir_path: []const u8) process.Se
const dir_path_posix = try pathToPosix(dir_path, &path_buffer);
var sync: CancelRegion.Sync = try .init(ev);
defer sync.deinit(ev);
- return ev.chdir(&sync, dir_path_posix);
+ return chdir(&sync, dir_path_posix);
}
fn processReplace(userdata: ?*anyopaque, options: process.ReplaceOptions) process.ReplaceError {