libmach: use #pragma pack to force 4 byte alignment of bootexec.h structures for amd64

This commit is contained in:
cinap_lenrek 2015-03-18 19:31:51 +01:00
parent 3889ada959
commit dbbe430ec7

View file

@ -1,3 +1,5 @@
#pragma pack on
struct coffsect
{
char name[8];
@ -135,3 +137,5 @@ struct i386exec
struct coffsect ibsss;
struct coffsect icomments;
};
#pragma pack off