Used a more portable way to force alignment in security.h

Defining an array of zero elements does not force alignment on some CPUs,
insert a filler.
This commit is contained in:
Jean-Pierre André 2016-04-06 09:57:59 +02:00
parent 8a1358fff4
commit 6c768f215d

View File

@ -173,7 +173,7 @@ struct POSIX_SECURITY {
int defcnt; int defcnt;
int firstdef; int firstdef;
u16 tagsset; u16 tagsset;
s32 alignment[0]; u16 filler;
struct POSIX_ACL acl; struct POSIX_ACL acl;
} ; } ;