Prefixed all global variables with "Gbl_" for easy recognition

date	99.09.02.18.02.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 19:00:47 +00:00
parent 83ed4ff555
commit 2e54eeea63

View File

@ -427,6 +427,8 @@ CmDumpCurrentAllocations (
CmAcquireMutex (MTX_MEMORY);
DEBUG_PRINT (TRACE_ALLOCATIONS | TRACE_TABLES, ("Outstanding allocations:\n"));
for (i = 1; ; i++) /* Just a counter */
{
if ((Element->Component & Component) &&
@ -441,7 +443,7 @@ CmDumpCurrentAllocations (
if (Element->Size == sizeof (ACPI_OBJECT_INTERNAL))
{
DEBUG_PRINT_RAW (TRACE_ALLOCATIONS | TRACE_TABLES, (" Type %s",
NsTypeNames[((ACPI_OBJECT_INTERNAL *)(Element->Address))->Type]));
Gbl_NsTypeNames[((ACPI_OBJECT_INTERNAL *)(Element->Address))->Type]));
}
DEBUG_PRINT_RAW (TRACE_ALLOCATIONS | TRACE_TABLES, ("\n"));