aboutsummaryrefslogtreecommitdiff
path: root/lib/std/Io/Threaded.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2025-12-18 11:31:23 -0800
committerAndrew Kelley <andrew@ziglang.org>2025-12-23 22:15:10 -0800
commit446c145ca86b014d6743f5666e9ee1d671b56045 (patch)
tree28b3754371c40a106896916e7e01a5401d9148aa /lib/std/Io/Threaded.zig
parenta2416c685a83788780fec1c379008a2d795f7bd2 (diff)
downloadzig-446c145ca86b014d6743f5666e9ee1d671b56045.tar.gz
zig-446c145ca86b014d6743f5666e9ee1d671b56045.zip
std.Io.Threaded: fix compilation errors on posix
Diffstat (limited to 'lib/std/Io/Threaded.zig')
-rw-r--r--lib/std/Io/Threaded.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/std/Io/Threaded.zig b/lib/std/Io/Threaded.zig
index fc66345785..10f6c2d507 100644
--- a/lib/std/Io/Threaded.zig
+++ b/lib/std/Io/Threaded.zig
@@ -1621,7 +1621,7 @@ fn dirMakePath(
// stat the file and return an error if it's not a directory
// this is important because otherwise a dangling symlink
// could cause an infinite loop
- const fstat = dirStatFile(t, dir, component.path, .{});
+ const fstat = try dirStatFile(t, dir, component.path, .{});
if (fstat.kind != .directory) return error.NotDir;
},
error.FileNotFound => |e| {
@@ -3796,7 +3796,7 @@ fn dirReadWindows(userdata: ?*anyopaque, dr: *Dir.Reader, buffer: []Dir.Entry) D
// the remaining unprocessed entries, then backtrack and return what we have so far.
if (name_index + std.unicode.calcWtf8Len(name_wtf16le) > unreserved_start + dr.index) {
// We should always be able to fit at least one entry into the buffer no matter what
- std.debug.assert(buffer_index != 0);
+ assert(buffer_index != 0);
dr.index = backtrack_index;
break;
}