| author | |
| committer | |
| log | 5dd6f9616e2adebed8e43a0c6bfb3ce8279b1c15 |
| tree | 97adf09fb8543764f34986c21d5298a44261d40d |
| parent | 9c07d30ef5ccfa50c61b51f75c42cf37a09a5863 |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/fs.zig+1-1| ... | ... | @@ -501,7 +501,7 @@ pub const Dir = struct { |
| 501 | 501 | }, |
| 502 | 502 | .linux => struct { |
| 503 | 503 | dir: Dir, |
| 504 | buf: [8192]u8, // TODO align(@alignOf(os.dirent64)), | |
| 504 | buf: [8192]u8 align(if (builtin.os.tag != .linux) 1 else @alignOf(os.linux.dirent64)), | |
| 505 | 505 | index: usize, |
| 506 | 506 | end_index: usize, |
| 507 | 507 |