summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Core
diff options
context:
space:
mode:
authorklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2007-09-26 03:12:37 +0000
committerklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2007-09-26 03:12:37 +0000
commit5088e385e07b2d5db69eff536ef0bf05e732a0b6 (patch)
tree6221a1dc8a27e5b725432c4156e281c86c747564 /MdeModulePkg/Core
parentca5fab07d3f3fd2ad0d5b003667fbe86f3556dc3 (diff)
downloadedk2-platforms-5088e385e07b2d5db69eff536ef0bf05e732a0b6.tar.xz
Fix a typo.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3922 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Core')
-rw-r--r--MdeModulePkg/Core/Pei/PeiMain/PeiMain.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/MdeModulePkg/Core/Pei/PeiMain/PeiMain.c b/MdeModulePkg/Core/Pei/PeiMain/PeiMain.c
index f8eb92e128..f858740971 100644
--- a/MdeModulePkg/Core/Pei/PeiMain/PeiMain.c
+++ b/MdeModulePkg/Core/Pei/PeiMain/PeiMain.c
@@ -83,7 +83,7 @@ EFI_STATUS
EFIAPI
PeiCore (
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
)
/*++
@@ -226,8 +226,8 @@ Returns:
//
// If SEC provided any PPI services to PEI, install them.
//
- if (PpList != NULL) {
- Status = PeiServicesInstallPpi (PpList);
+ if (PpiList != NULL) {
+ Status = PeiServicesInstallPpi (PpiList);
ASSERT_EFI_ERROR (Status);
}
}