mirror of https://github.com/acidanthera/audk.git
ICC Cleanup: add (VOID **) typecast.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6584 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
70d18ad141
commit
d24d32ddf8
|
@ -1,6 +1,6 @@
|
|||
/*++
|
||||
|
||||
Copyright (c) 2004 - 2006, Intel Corporation
|
||||
Copyright (c) 2004 - 2008, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
|
@ -92,7 +92,7 @@ Returns:
|
|||
Status = (*PeiServices)->AllocatePool (
|
||||
PeiServices,
|
||||
PEI_STATUS_CODE_HEAP_LENGTH,
|
||||
&StartPointer
|
||||
(VOID **) &StartPointer
|
||||
);
|
||||
|
||||
//
|
||||
|
@ -111,7 +111,7 @@ Returns:
|
|||
Status = (*PeiServices)->AllocatePool (
|
||||
PeiServices,
|
||||
sizeof (MEMORY_STATUS_CODE_INSTANCE),
|
||||
&PrivateData
|
||||
(VOID **) &PrivateData
|
||||
);
|
||||
|
||||
//
|
||||
|
@ -171,7 +171,7 @@ Returns:
|
|||
&gPeiStatusCodeMemoryPpiGuid,
|
||||
0,
|
||||
&StatusCodeMemoryDescriptor,
|
||||
&StatusCodeMemoryPpi
|
||||
(VOID **) &StatusCodeMemoryPpi
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
return ;
|
||||
|
@ -274,7 +274,7 @@ Returns:
|
|||
&gPeiStatusCodePpiGuid,
|
||||
0,
|
||||
&ReportStatusCodeDescriptor,
|
||||
&ReportStatusCodePpi
|
||||
(VOID **) &ReportStatusCodePpi
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
return ;
|
||||
|
@ -368,7 +368,7 @@ Returns:
|
|||
&gPeiStatusCodeMemoryPpiGuid,
|
||||
0,
|
||||
&StatusCodeMemoryDescriptor,
|
||||
&StatusCodeMemoryPpi
|
||||
(VOID **) &StatusCodeMemoryPpi
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
return EFI_SUCCESS;
|
||||
|
|
Loading…
Reference in New Issue