authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-10-31 13:55:51-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-10-31 13:56:15-04:00
log081c62fc0044e3bbe8d87873ef1ccc985911c812
tree9f42ea563eaf467f349e5dbcc2245fd192f41a5e
parent00382f6dae83291468f0ba792f2cefc0216098da
signature Commit is signed but in an unrecognized format.

fix regression in std.os.dirent64 on linux


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

lib/std/os/bits/linux.zig+1-1
...@@ -988,7 +988,7 @@ pub const dirent64 = extern struct {...@@ -988,7 +988,7 @@ pub const dirent64 = extern struct {
988 d_type: u8,988 d_type: u8,
989 d_name: u8, // field address is the address of first byte of name https://github.com/ziglang/zig/issues/173989 d_name: u8, // field address is the address of first byte of name https://github.com/ziglang/zig/issues/173
990990
991 pub fn reclen(self: dirent) u16 {991 pub fn reclen(self: dirent64) u16 {
992 return self.d_reclen;992 return self.d_reclen;
993 }993 }
994};994};