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
|
All rights reserved. This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
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
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -92,7 +92,7 @@ Returns:
|
||||||
Status = (*PeiServices)->AllocatePool (
|
Status = (*PeiServices)->AllocatePool (
|
||||||
PeiServices,
|
PeiServices,
|
||||||
PEI_STATUS_CODE_HEAP_LENGTH,
|
PEI_STATUS_CODE_HEAP_LENGTH,
|
||||||
&StartPointer
|
(VOID **) &StartPointer
|
||||||
);
|
);
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -111,7 +111,7 @@ Returns:
|
||||||
Status = (*PeiServices)->AllocatePool (
|
Status = (*PeiServices)->AllocatePool (
|
||||||
PeiServices,
|
PeiServices,
|
||||||
sizeof (MEMORY_STATUS_CODE_INSTANCE),
|
sizeof (MEMORY_STATUS_CODE_INSTANCE),
|
||||||
&PrivateData
|
(VOID **) &PrivateData
|
||||||
);
|
);
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -171,7 +171,7 @@ Returns:
|
||||||
&gPeiStatusCodeMemoryPpiGuid,
|
&gPeiStatusCodeMemoryPpiGuid,
|
||||||
0,
|
0,
|
||||||
&StatusCodeMemoryDescriptor,
|
&StatusCodeMemoryDescriptor,
|
||||||
&StatusCodeMemoryPpi
|
(VOID **) &StatusCodeMemoryPpi
|
||||||
);
|
);
|
||||||
if (EFI_ERROR (Status)) {
|
if (EFI_ERROR (Status)) {
|
||||||
return ;
|
return ;
|
||||||
|
@ -274,7 +274,7 @@ Returns:
|
||||||
&gPeiStatusCodePpiGuid,
|
&gPeiStatusCodePpiGuid,
|
||||||
0,
|
0,
|
||||||
&ReportStatusCodeDescriptor,
|
&ReportStatusCodeDescriptor,
|
||||||
&ReportStatusCodePpi
|
(VOID **) &ReportStatusCodePpi
|
||||||
);
|
);
|
||||||
if (EFI_ERROR (Status)) {
|
if (EFI_ERROR (Status)) {
|
||||||
return ;
|
return ;
|
||||||
|
@ -368,7 +368,7 @@ Returns:
|
||||||
&gPeiStatusCodeMemoryPpiGuid,
|
&gPeiStatusCodeMemoryPpiGuid,
|
||||||
0,
|
0,
|
||||||
&StatusCodeMemoryDescriptor,
|
&StatusCodeMemoryDescriptor,
|
||||||
&StatusCodeMemoryPpi
|
(VOID **) &StatusCodeMemoryPpi
|
||||||
);
|
);
|
||||||
if (EFI_ERROR (Status)) {
|
if (EFI_ERROR (Status)) {
|
||||||
return EFI_SUCCESS;
|
return EFI_SUCCESS;
|
||||||
|
|
Loading…
Reference in New Issue