commit 2aec35525d6eaa5d3d47a1c46d41d911571a6932 (tree)
parent 88b95794881a58540693f3f9dd2f1978b3506e2a
Author: Andrew Kelley <andrew@ziglang.org>
Date: Thu, 17 Oct 2019 13:20:30 -0400
mipsel: fix padding on stat struct
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/lib/std/os/bits/linux/mipsel.zig b/lib/std/os/bits/linux/mipsel.zig
@@ -484,6 +484,7 @@ pub const Stat = extern struct {
blksize: blksize_t,
__pad3: [1]u32,
blocks: blkcnt_t,
+ __pad4: [14]usize,
pub fn atime(self: Stat) timespec {
return self.atim;