mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-27 19:09:47 +03:00
std.fs: fix build error in selfExePath() on openbsd
This commit is contained in:
+1
-2
@@ -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| {
|
||||
|
||||
Reference in New Issue
Block a user