diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-03-10 05:49:39 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-03-10 05:49:39 +0000 |
commit | fcb577f4581f46c958b224717dc3f87ac67b74a0 (patch) | |
tree | f6162aa8024b4c230dc823098331bc66e9feb711 | |
parent | a05f22fa369937e013a5ce9bd5102ff8b93cf4d7 (diff) | |
download | edk2-platforms-fcb577f4581f46c958b224717dc3f87ac67b74a0.tar.xz |
Fix GCC building warning.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4811 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | MdePkg/Include/IndustryStandard/Tpm12.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/MdePkg/Include/IndustryStandard/Tpm12.h b/MdePkg/Include/IndustryStandard/Tpm12.h index 374d3131e3..f16a952107 100644 --- a/MdePkg/Include/IndustryStandard/Tpm12.h +++ b/MdePkg/Include/IndustryStandard/Tpm12.h @@ -26,8 +26,7 @@ // Structures are all packed on 1-byte alignment
//
-#pragma pack (push)
-#pragma pack (1)
+#pragma pack (push, 1)
//
// Part 2, section 2.2: Basic types & Helper redefinitions
|