remove useless comment

This commit is contained in:
Kinzie 2024-04-21 11:06:49 +01:00
parent c9addee9ed
commit 5a4c056f37
1 changed files with 1 additions and 1 deletions

View File

@ -319,7 +319,7 @@ fn createXauthFile(pwd: [:0]const u8) ![:0]const u8 {
var buf: [256]u8 = undefined;
const xauthority: [:0]u8 = try std.fmt.bufPrintZ(&buf, "{s}/{s}", .{ trimmed_xauth_dir, xauth_file });
const file = try std.fs.createFileAbsoluteZ(xauthority, .{}); // FileNotFound
const file = try std.fs.createFileAbsoluteZ(xauthority, .{});
file.close();
return xauthority;