mirror of
https://github.com/acpica/acpica/
synced 2025-02-24 09:24:08 +03:00
Fixed exit macros
date 2000.05.19.21.57.00; author rmoore1; state Exp;
This commit is contained in:
parent
3207c02b7f
commit
96f09d2c76
@ -189,7 +189,7 @@ _CmCreateInternalObject (
|
||||
|
||||
INCREMENT_OBJECT_METRICS (sizeof (ACPI_OBJECT_INTERNAL));
|
||||
|
||||
return_VALUE (Object);
|
||||
return_PTR (Object);
|
||||
}
|
||||
|
||||
|
||||
@ -326,7 +326,7 @@ _CmAllocateObjectDesc (
|
||||
_REPORT_ERROR (ModuleName, LineNumber, ComponentId,
|
||||
"Could not allocate Object Descriptor");
|
||||
|
||||
return_VALUE (NULL);
|
||||
return_PTR (NULL);
|
||||
}
|
||||
}
|
||||
|
||||
@ -337,7 +337,7 @@ _CmAllocateObjectDesc (
|
||||
DEBUG_PRINT (TRACE_ALLOCATIONS, ("AllocateObjectDesc: %p Size 0x%x\n",
|
||||
Object, sizeof (ACPI_OBJECT_INTERNAL)));
|
||||
|
||||
return_VALUE (Object);
|
||||
return_PTR (Object);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user