diff options
author | Yao, Jiewen <jiewen.yao@intel.com> | 2015-01-20 08:24:12 +0000 |
---|---|---|
committer | jyao1 <jyao1@Edk2> | 2015-01-20 08:24:12 +0000 |
commit | 6a39a6a1a8a35a84e4e13900a2b5e8da1b6435f2 (patch) | |
tree | 31bbf64a1bb2290914e83c1222b4f37525f9ac16 | |
parent | 944d79b75485068324d1d39281288601764e235d (diff) | |
download | edk2-platforms-6a39a6a1a8a35a84e4e13900a2b5e8da1b6435f2.tar.xz |
Fix GCC build error.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: "Yao, Jiewen" <jiewen.yao@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16627 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | MdePkg/Library/DxeHstiLib/HstiDxe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MdePkg/Library/DxeHstiLib/HstiDxe.c b/MdePkg/Library/DxeHstiLib/HstiDxe.c index c7a5769bf5..d5d7574987 100644 --- a/MdePkg/Library/DxeHstiLib/HstiDxe.c +++ b/MdePkg/Library/DxeHstiLib/HstiDxe.c @@ -393,7 +393,7 @@ InternalHstiRecordFeaturesVerified ( UINT8 *SecurityFeaturesVerified;
EFI_STATUS Status;
- Aip = InternalHstiFindAip (Role, ImplementationID, &Hsti, &HstiSize);
+ Aip = InternalHstiFindAip (Role, ImplementationID, (VOID **)&Hsti, &HstiSize);
if (Aip == NULL) {
return EFI_NOT_STARTED;
}
@@ -518,7 +518,7 @@ InternalHstiRecordErrorString ( UINTN Offset;
EFI_STATUS Status;
- Aip = InternalHstiFindAip (Role, ImplementationID, &Hsti, &HstiSize);
+ Aip = InternalHstiFindAip (Role, ImplementationID, (VOID **)&Hsti, &HstiSize);
if (Aip == NULL) {
return EFI_NOT_STARTED;
}
|