mirror of https://github.com/acidanthera/audk.git
1. Fix UNIXGCC IPF build failure in SecurityPkg.
Signed-off-by: sfu5 Reviewed-by: gdong1 git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13152 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
521527e0b6
commit
1413b8e94b
|
@ -223,7 +223,7 @@ extern SECUREBOOT_CONFIG_PRIVATE_DATA mSecureBootConfigPrivateDateTemplate;
|
|||
//
|
||||
// Cryptograhpic Key Information
|
||||
//
|
||||
#pragma pack (push, 1)
|
||||
#pragma pack(1)
|
||||
typedef struct _CPL_KEY_INFO {
|
||||
UINT32 KeyLengthInBits; // Key Length In Bits
|
||||
UINT32 BlockSize; // Operation Block Size in Bytes
|
||||
|
@ -232,7 +232,7 @@ typedef struct _CPL_KEY_INFO {
|
|||
UINT32 CipherMode; // Cipher Mode for Symmetric Algorithm
|
||||
UINT32 Flags; // Additional Key Property Flags
|
||||
} CPL_KEY_INFO;
|
||||
#pragma pack (pop)
|
||||
#pragma pack()
|
||||
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue