diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-10-19 18:52:14 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-10-19 18:52:14 -0400 |
commit | dde325d7b3ff6332dc0c24e29f8827b1b16bdd92 (patch) | |
tree | f2f02a50c1152ff08850e4b199956250074befd0 /arch/microblaze/bits | |
parent | 599f97360389911c293e0ca4c5eb49e007377fba (diff) | |
download | musl-dde325d7b3ff6332dc0c24e29f8827b1b16bdd92.tar.gz |
fix struct stat size/padding on microblaze
Diffstat (limited to 'arch/microblaze/bits')
-rw-r--r-- | arch/microblaze/bits/stat.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/microblaze/bits/stat.h b/arch/microblaze/bits/stat.h index bb9314a5..8e920fc8 100644 --- a/arch/microblaze/bits/stat.h +++ b/arch/microblaze/bits/stat.h @@ -11,9 +11,10 @@ struct stat uid_t st_uid; gid_t st_gid; dev_t st_rdev; - int __st_rdev_padding; + long long __st_rdev_padding; off_t st_size; blksize_t st_blksize; + int __st_blksize_padding; blkcnt_t st_blocks; struct timespec st_atim; struct timespec st_mtim; |