Removed extraneous semicolon

date	2000.09.05.22.40.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 19:22:58 +00:00
parent b868c3e27b
commit 937d20771a

View File

@ -1,6 +1,7 @@
/******************************************************************************
*
* Module Name: cmxface - External interfaces for "global" ACPI functions
* $Revision: 1.44 $
*
*****************************************************************************/
@ -126,7 +127,7 @@
#define _COMPONENT MISCELLANEOUS
MODULE_NAME ("cmxface");
MODULE_NAME ("cmxface")
/*******************************************************************************
@ -313,7 +314,7 @@ AcpiGetSystemInfo (
/* Current status of the ACPI tables, per table type */
InfoPtr->NumTableTypes = NUM_ACPI_TABLES;
for (i = 0; i < NUM_ACPI_TABLES; i++);
for (i = 0; i < NUM_ACPI_TABLES; i++)
{
InfoPtr->TableInfo[i].Count = AcpiGbl_AcpiTables[i].Count;
}