authorgravatar for der.teufel.mail@gmail.comKrzysztof Wolicki <der.teufel.mail@gmail.com> 2024-07-07 12:10:19+02:00
committergravatar for der.teufel.mail@gmail.comKrzysztof Wolicki <der.teufel.mail@gmail.com> 2024-07-07 12:10:19+02:00
logae919915f6c3c1827311ebc6ec3c5883a1cec08e
tree44b9b5eb64e2dad465b76e75a560241f08f7df0f
parentc40708a2ce4f6ed1adcc1de39fc7b4fc27db32f8

std.Build.Cache.Path: fix makeOpenPath signature


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/Build/Cache/Path.zig+1-1
......@@ -58,7 +58,7 @@ pub fn openFile(
5858 return p.root_dir.handle.openFile(joined_path, flags);
5959}
6060
61pub fn makeOpenPath(p: Path, sub_path: []const u8, opts: fs.OpenDirOptions) !fs.Dir {
61pub fn makeOpenPath(p: Path, sub_path: []const u8, opts: fs.Dir.OpenDirOptions) !fs.Dir {
6262 var buf: [fs.max_path_bytes]u8 = undefined;
6363 const joined_path = if (p.sub_path.len == 0) sub_path else p: {
6464 break :p std.fmt.bufPrint(&buf, "{s}" ++ fs.path.sep_str ++ "{s}", .{