iASL: Remove unused variable.

Remove unused variable in DoCompile.
This commit is contained in:
Robert Moore 2012-03-15 14:01:16 -07:00
parent c078edaa1c
commit a219c8e17f

View File

@ -523,7 +523,6 @@ CmDoCompile (
ACPI_STATUS Status;
UINT8 FullCompile;
UINT8 Event;
UINT8 Error;
FullCompile = UtBeginEvent ("*** Total Compile time ***");
@ -533,7 +532,7 @@ CmDoCompile (
/* Preprocessor */
Event = UtBeginEvent ("Preprocess input file");
Error = PrDoPreprocess ();
PrDoPreprocess ();
UtEndEvent (Event);
if (Gbl_PreprocessOnly)
{