Fourth pass to include lint changes/comments/cleanup (64-bit)

date	2002.04.11.22.57.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 18:08:46 +00:00
parent 0e103b295f
commit faee6233cc

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: psparse - Parser top level AML parse routines
* $Revision: 1.124 $
* $Revision: 1.125 $
*
*****************************************************************************/
@ -947,7 +947,11 @@ AcpiPsParseLoop (
{
/* There are arguments (complex ones), push Op and prepare for argument */
AcpiPsPushScope (ParserState, Op, WalkState->ArgTypes, WalkState->ArgCount);
Status = AcpiPsPushScope (ParserState, Op, WalkState->ArgTypes, WalkState->ArgCount);
if (ACPI_FAILURE (Status))
{
return_ACPI_STATUS (Status);
}
Op = NULL;
continue;
}