diff options
Diffstat (limited to 'source/compiler/asloptions.c')
-rw-r--r-- | source/compiler/asloptions.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source/compiler/asloptions.c b/source/compiler/asloptions.c index 65fc4bfa378f..2dcd49402e04 100644 --- a/source/compiler/asloptions.c +++ b/source/compiler/asloptions.c @@ -229,7 +229,7 @@ AslCommandLine ( /* Next parameter must be the input filename */ if (!argv[AcpiGbl_Optind] && - !Gbl_DisasmFlag) + !AcpiGbl_DisasmFlag) { printf ("Missing input filename\n"); BadCommandLine = TRUE; @@ -469,7 +469,7 @@ AslDoOptions ( return (-1); } - Gbl_DisasmFlag = TRUE; + AcpiGbl_DisasmFlag = TRUE; break; case 'D': /* Define a symbol */ @@ -541,6 +541,7 @@ AslDoOptions ( { case '^': + printf (ACPI_COMMON_SIGNON (ASL_COMPILER_NAME)); Usage (); exit (0); |