diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-09-26 03:12:37 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-09-26 03:12:37 +0000 |
commit | 5088e385e07b2d5db69eff536ef0bf05e732a0b6 (patch) | |
tree | 6221a1dc8a27e5b725432c4156e281c86c747564 | |
parent | ca5fab07d3f3fd2ad0d5b003667fbe86f3556dc3 (diff) | |
download | edk2-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
-rw-r--r-- | MdeModulePkg/Core/Pei/PeiMain/PeiMain.c | 6 |
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);
}
}
|