diff options
author | Dong Guo <guo.dong@intel.com> | 2014-12-11 06:34:57 +0000 |
---|---|---|
committer | gdong1 <gdong1@Edk2> | 2014-12-11 06:34:57 +0000 |
commit | 5789fe3587ce0fb2fa5af1b00b11b5b0659b3289 (patch) | |
tree | d029fb11003f699ebda8dcc306d973ba8780b466 /SecurityPkg/Library | |
parent | 684a565a0459b758e69a5b95a8c4b34704124930 (diff) | |
download | edk2-platforms-5789fe3587ce0fb2fa5af1b00b11b5b0659b3289.tar.xz |
correct a data type error.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Dong Guo <guo.dong@intel.com>
Reviewed-by: Dong Eric <eric.dong@intel.com>
Reviewed-by: Long Qin <qin.long@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16498 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'SecurityPkg/Library')
-rw-r--r-- | SecurityPkg/Library/DxeImageVerificationLib/DxeImageVerificationLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SecurityPkg/Library/DxeImageVerificationLib/DxeImageVerificationLib.c b/SecurityPkg/Library/DxeImageVerificationLib/DxeImageVerificationLib.c index 443926b507..2475f35c85 100644 --- a/SecurityPkg/Library/DxeImageVerificationLib/DxeImageVerificationLib.c +++ b/SecurityPkg/Library/DxeImageVerificationLib/DxeImageVerificationLib.c @@ -841,7 +841,7 @@ IsCertHashFoundInDatabase ( )
{
BOOLEAN IsFound;
- EFI_STATUS Status;
+ BOOLEAN Status;
EFI_SIGNATURE_LIST *DbxList;
UINTN DbxSize;
EFI_SIGNATURE_DATA *CertHash;
|