mirror of https://github.com/acidanthera/audk.git
Fix a typo bug that miss &
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9475 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
0c561f4175
commit
441ff98cba
|
@ -55,7 +55,7 @@ PcdLibConstructor (
|
|||
// PI Pcd protocol defined in PI 1.2 vol3 should be installed before the module
|
||||
// access DynamicEx type PCD.
|
||||
//
|
||||
Status = gBS->LocateProtocol (&gEfiPcdProtocolGuid, NULL, (VOID **) mPiPcd);
|
||||
Status = gBS->LocateProtocol (&gEfiPcdProtocolGuid, NULL, (VOID **) &mPiPcd);
|
||||
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
ASSERT (mPiPcd!= NULL);
|
||||
|
|
Loading…
Reference in New Issue