use else in err switch
This commit is contained in:
parent
32c998e03c
commit
dbbe709dc7
@ -2309,13 +2309,8 @@ pub fn chdir(dir_path: []const u8) ChangeCurDirError!void {
|
|||||||
@compileError("chdir is not supported in WASI");
|
@compileError("chdir is not supported in WASI");
|
||||||
} else if (builtin.os.tag == .windows) {
|
} else if (builtin.os.tag == .windows) {
|
||||||
windows.SetCurrentDirectory(dir_path) catch |err| switch (err) {
|
windows.SetCurrentDirectory(dir_path) catch |err| switch (err) {
|
||||||
error.InvalidUtf8 => return error.InvalidUtf8,
|
|
||||||
error.NameTooLong => return error.NameTooLong,
|
|
||||||
error.FileNotFound => return error.FileNotFound,
|
|
||||||
error.NotDir => return error.NotDir,
|
|
||||||
error.NoDevice => return error.FileSystem,
|
error.NoDevice => return error.FileSystem,
|
||||||
error.AccessDenied => return error.AccessDenied,
|
else => |e| return e,
|
||||||
error.Unexpected => return error.Unexpected,
|
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
const dir_path_c = try toPosixPath(dir_path);
|
const dir_path_c = try toPosixPath(dir_path);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user