We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b595dd commit 515ee5bCopy full SHA for 515ee5b
lib/std/os.zig
@@ -2651,6 +2651,7 @@ pub fn renameatW(
2651
.creation = windows.FILE_OPEN,
2652
.io_mode = .blocking,
2653
.filter = .any, // This function is supposed to rename both files and directories.
2654
+ .follow_symlinks = false,
2655
}) catch |err| switch (err) {
2656
error.WouldBlock => unreachable, // Not possible without `.share_access_nonblocking = true`.
2657
else => |e| return e,
0 commit comments