fix: chdir on uring

This commit is contained in:
Brandon Freeman
2026-03-13 21:17:34 -04:00
committed by Ryan Liptak
parent c6cb5f691d
commit 22c4fbdf16
+1 -1
View File
@@ -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 {