mirror of
https://github.com/acpica/acpica/
synced 2025-02-24 17:34:43 +03:00
clean up code based on errors given from Intel C 5.0 compiler
Removed or used unused variables, as appropriate date 2001.03.15.19.04.00; author agrover; state Exp;
This commit is contained in:
parent
cbe66edf02
commit
971b313ec3
@ -1,7 +1,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Module Name: cmalloc - local memory allocation routines
|
||||
* $Revision: 1.86 $
|
||||
* $Revision: 1.87 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
@ -666,7 +666,7 @@ _CmAllocate (
|
||||
_REPORT_ERROR (Module, Line, Component,
|
||||
("CmAllocate: Could not allocate size %X\n", Size));
|
||||
|
||||
return_VALUE (NULL);
|
||||
return_PTR (NULL);
|
||||
}
|
||||
|
||||
#ifdef ACPI_DEBUG_TRACK_ALLOCATIONS
|
||||
@ -720,7 +720,7 @@ _CmCallocate (
|
||||
{
|
||||
_REPORT_ERROR (Module, Line, Component,
|
||||
("CmCallocate: Attempt to allocate zero bytes\n"));
|
||||
return_VALUE (NULL);
|
||||
return_PTR (NULL);
|
||||
}
|
||||
|
||||
|
||||
@ -732,7 +732,7 @@ _CmCallocate (
|
||||
|
||||
_REPORT_ERROR (Module, Line, Component,
|
||||
("CmCallocate: Could not allocate size %X\n", Size));
|
||||
return_VALUE (NULL);
|
||||
return_PTR (NULL);
|
||||
}
|
||||
|
||||
#ifdef ACPI_DEBUG_TRACK_ALLOCATIONS
|
||||
|
Loading…
x
Reference in New Issue
Block a user