Fix a typo.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3922 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
klu2 2007-09-26 03:12:37 +00:00
parent ca5fab07d3
commit 5088e385e0
1 changed files with 3 additions and 3 deletions

View File

@ -83,7 +83,7 @@ EFI_STATUS
EFIAPI EFIAPI
PeiCore ( PeiCore (
IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData, IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData,
IN CONST EFI_PEI_PPI_DESCRIPTOR *PpList, IN CONST EFI_PEI_PPI_DESCRIPTOR *PpiList,
IN VOID *Data IN VOID *Data
) )
/*++ /*++
@ -226,8 +226,8 @@ Returns:
// //
// If SEC provided any PPI services to PEI, install them. // If SEC provided any PPI services to PEI, install them.
// //
if (PpList != NULL) { if (PpiList != NULL) {
Status = PeiServicesInstallPpi (PpList); Status = PeiServicesInstallPpi (PpiList);
ASSERT_EFI_ERROR (Status); ASSERT_EFI_ERROR (Status);
} }
} }