From 96f09d2c76dc1fa3368b31b8b41cba8ed8c939f9 Mon Sep 17 00:00:00 2001 From: aystarik Date: Wed, 29 Jun 2005 19:20:27 +0000 Subject: [PATCH] Fixed exit macros date 2000.05.19.21.57.00; author rmoore1; state Exp; --- source/components/utilities/utobject.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/components/utilities/utobject.c b/source/components/utilities/utobject.c index 8a28f0fd8..e4ac3bba2 100644 --- a/source/components/utilities/utobject.c +++ b/source/components/utilities/utobject.c @@ -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); }