aboutsummaryrefslogtreecommitdiff
path: root/lib/std/fs.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2025-10-19 21:12:19 -0700
committerAndrew Kelley <andrew@ziglang.org>2025-10-29 06:20:50 -0700
commitaa6e8eff40bdf35c838c8cd93080f2e9d4fad3b2 (patch)
tree3d39b4b01c9d6af60dc8a83f5950535ddecfc5a7 /lib/std/fs.zig
parent482343f2e253f2078627e696fb98ff0e1d8e82df (diff)
downloadzig-aa6e8eff40bdf35c838c8cd93080f2e9d4fad3b2.tar.gz
zig-aa6e8eff40bdf35c838c8cd93080f2e9d4fad3b2.zip
std.Io.Threaded: implement dirAccess for Windows
Diffstat (limited to 'lib/std/fs.zig')
-rw-r--r--lib/std/fs.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/fs.zig b/lib/std/fs.zig
index 7fae26cb62..01188e29a3 100644
--- a/lib/std/fs.zig
+++ b/lib/std/fs.zig
@@ -263,7 +263,7 @@ pub fn openFileAbsolute(absolute_path: []const u8, flags: File.OpenFlags) File.O
/// Same as `openFileAbsolute` but the path parameter is WTF-16-encoded.
pub fn openFileAbsoluteW(absolute_path_w: []const u16, flags: File.OpenFlags) File.OpenError!File {
- assert(path.isAbsoluteWindowsWTF16(absolute_path_w));
+ assert(path.isAbsoluteWindowsWtf16(absolute_path_w));
return cwd().openFileW(absolute_path_w, flags);
}