diff options
author | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-03-10 16:46:03 +0000 |
---|---|---|
committer | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-03-10 16:46:03 +0000 |
commit | 454b8ca8516072e303d8d92a6cbe4b347e2de658 (patch) | |
tree | 4ae1a160ac5eabb63e4b26e0a84469d0cf0bd1a6 /IntelFrameworkModulePkg/Library/GenericBdsLib/BdsBoot.c | |
parent | 8fd7909bb5af2a5e5b62d3a95d6f66761df6d1e7 (diff) | |
download | edk2-platforms-454b8ca8516072e303d8d92a6cbe4b347e2de658.tar.xz |
Fix build warning generated by GCC.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7858 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFrameworkModulePkg/Library/GenericBdsLib/BdsBoot.c')
-rw-r--r-- | IntelFrameworkModulePkg/Library/GenericBdsLib/BdsBoot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IntelFrameworkModulePkg/Library/GenericBdsLib/BdsBoot.c b/IntelFrameworkModulePkg/Library/GenericBdsLib/BdsBoot.c index 0cb21c1692..3a9530ec27 100644 --- a/IntelFrameworkModulePkg/Library/GenericBdsLib/BdsBoot.c +++ b/IntelFrameworkModulePkg/Library/GenericBdsLib/BdsBoot.c @@ -248,7 +248,7 @@ BdsLibBootViaBootOption ( Status = gBS->LocateProtocol (
&gEfiSecurityArchProtocolGuid,
NULL,
- &SecurityProtocol
+ (VOID**) &SecurityProtocol
);
if (!EFI_ERROR (Status)) {
Status = SecurityProtocol->FileAuthenticationState (SecurityProtocol, 0, DevicePath);
|