commit 914005105e5ec4d60f99eab8819b7b2f367699f3 (tree)
parent 707e389f38d76a441751676f89cf862000fabc1d
Author: Alex Rønne Petersen <alex@alexrp.com>
Date: Mon, 1 Dec 2025 04:31:35 +0100
std.fs: fix build error in selfExePath() on openbsd
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/lib/std/fs.zig b/lib/std/fs.zig
@@ -490,8 +490,7 @@ pub fn selfExePath(out_buffer: []u8) SelfExePathError![]u8 {
const resolved_path = std.fmt.bufPrintSentinel(&resolved_path_buf, "{s}/{s}", .{
a_path,
std.os.argv[0],
- 0,
- }) catch continue;
+ }, 0) catch continue;
var real_path_buf: [max_path_bytes]u8 = undefined;
if (posix.realpathZ(resolved_path, &real_path_buf)) |real_path| {