Modified to set AcpiGbl_DbConsoleDebugLevel to match AcpiDbgLevel if

the user uses the -l option.


date	2001.04.05.18.43.00;	author mwalz;	state Exp;
This commit is contained in:
aystarik 2005-06-29 20:41:41 +00:00
parent 1719bd08d7
commit 1433a40d45

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: aemain - Main routine for the AcpiExec utility
* $Revision: 1.32 $
* $Revision: 1.33 $
*
*****************************************************************************/
@ -243,6 +243,7 @@ main (
case 'l':
AcpiDbgLevel = strtoul (optarg, NULL, 0);
AcpiGbl_DbConsoleDebugLevel = AcpiDbgLevel;
printf ("Debug Level: %lX\n", AcpiDbgLevel);
break;