diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-11-24 11:01:07 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-11-24 11:01:07 +0000 |
commit | 441ff98cba491589c3583ca6937137dbc8de7098 (patch) | |
tree | 4531e3f39b193afca87b7ac0e4cfac6851dabbe1 /MdePkg/Library | |
parent | 0c561f4175c9f577679cd0cdd9aef1e553f9e35f (diff) | |
download | edk2-441ff98cba491589c3583ca6937137dbc8de7098.zip edk2-441ff98cba491589c3583ca6937137dbc8de7098.tar.gz edk2-441ff98cba491589c3583ca6937137dbc8de7098.tar.bz2 |
Fix a typo bug that miss &
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9475 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library')
-rw-r--r-- | MdePkg/Library/DxePcdLib/DxePcdLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdePkg/Library/DxePcdLib/DxePcdLib.c b/MdePkg/Library/DxePcdLib/DxePcdLib.c index e6feeac..483d3e6 100644 --- a/MdePkg/Library/DxePcdLib/DxePcdLib.c +++ b/MdePkg/Library/DxePcdLib/DxePcdLib.c @@ -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);
|