diff options
author | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-07-20 20:29:20 +0000 |
---|---|---|
committer | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-07-20 20:29:20 +0000 |
commit | d39c2afe2ed0ef6dadd5299843ad169c691443c6 (patch) | |
tree | 8a4edc933ed0f89356156a548b687feeed042fab /UnixPkg | |
parent | e24f50f2d148b5bf2700c584f6afc6dc0e2b2809 (diff) | |
download | edk2-platforms-d39c2afe2ed0ef6dadd5299843ad169c691443c6.tar.xz |
Fix #pragma pack(4) issue with an #ifdef. The #pragma () is in the wrong place.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10679 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'UnixPkg')
-rw-r--r-- | UnixPkg/Include/Protocol/UnixThunk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/UnixPkg/Include/Protocol/UnixThunk.h b/UnixPkg/Include/Protocol/UnixThunk.h index 67bf53761c..4141d35662 100644 --- a/UnixPkg/Include/Protocol/UnixThunk.h +++ b/UnixPkg/Include/Protocol/UnixThunk.h @@ -127,8 +127,8 @@ typedef struct stat_fix { __int64_t st_qspare[2]; /* RESERVED: DO NOT USE! */ } STAT_FIX; -#pragma pack() #endif +#pragma pack() #else |