aarch64, x32: fix decoding of compat personality statfs64/fstatfs64

* statfs.c (struct compat_statfs64) [AARCH64 || X32]: Apply the same
attributes as on X86_64.
This commit is contained in:
Дмитрий Левин 2015-03-02 21:34:02 +00:00
parent f677715a9b
commit d50949d21c

View File

@ -121,7 +121,7 @@ struct compat_statfs64 {
uint32_t f_flags;
uint32_t f_spare[4];
}
#if defined(X86_64) || defined(IA64)
#if defined AARCH64 || defined X86_64 || defined X32 || defined IA64
__attribute__ ((packed, aligned(4)))
#endif
;