diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2014-02-17 17:10:41 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2014-02-17 17:10:41 +0000 |
commit | 526d99544ba42a5a2155021975b3b97da425819e (patch) | |
tree | f33eb960cbd87cb5fa516e45153eb6351dc8ea2e /source/include/acparser.h | |
parent | 7bf0bd8c239ae7e6cb5c98382db85377146519d6 (diff) |
Notes
Diffstat (limited to 'source/include/acparser.h')
-rw-r--r-- | source/include/acparser.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/include/acparser.h b/source/include/acparser.h index bddd3c114296f..74389d2ef7781 100644 --- a/source/include/acparser.h +++ b/source/include/acparser.h @@ -46,6 +46,8 @@ #define __ACPARSER_H__ +#pragma pack(push) /* Set default struct packing */ + #define OP_HAS_RETURN_VALUE 1 /* Variable number of arguments. This field must be 32 bits */ @@ -353,4 +355,6 @@ AcpiPsShow ( ACPI_PARSE_OBJECT *op); +#pragma pack(pop) /* Restore original struct packing */ + #endif /* __ACPARSER_H__ */ |