Missed a paren

date	2002.02.13.00.03.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 16:24:51 +00:00
parent 29937cd598
commit 3c04bf41b9

View File

@ -1,7 +1,7 @@
/*******************************************************************************
*
* Module Name: dbinput - user front-end to the AML debugger
* $Revision: 1.78 $
* $Revision: 1.79 $
*
******************************************************************************/
@ -852,7 +852,7 @@ AcpiDbExecuteThread (
AcpiGbl_StepToNextCall = FALSE;
MStatus = AcpiUtAcquireMutex (ACPI_MTX_DEBUG_CMD_READY);
if (ACPI_FAILURE (MStatus)
if (ACPI_FAILURE (MStatus))
{
return;
}
@ -860,7 +860,7 @@ AcpiDbExecuteThread (
Status = AcpiDbCommandDispatch (AcpiGbl_DbLineBuf, NULL, NULL);
MStatus = AcpiUtReleaseMutex (ACPI_MTX_DEBUG_CMD_COMPLETE);
if (ACPI_FAILURE (MStatus)
if (ACPI_FAILURE (MStatus))
{
return;
}
@ -914,7 +914,7 @@ AcpiDbUserCommands (
NATIVE_CHAR Prompt,
ACPI_PARSE_OBJECT *Op)
{
ACPI_STATUS Status;
ACPI_STATUS Status = AE_OK;
/* TBD: [Restructure] Need a separate command line buffer for step mode */