mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-27 19:09:47 +03:00
fix: chdir on uring
This commit is contained in:
committed by
Ryan Liptak
parent
c6cb5f691d
commit
22c4fbdf16
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user