summaryrefslogtreecommitdiff
path: root/compiler/aslmain.c
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2010-10-13 20:35:34 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2010-10-13 20:35:34 +0000
commit11641cd290cbb4765d39dadd5a4eee278b8769ee (patch)
tree8b4567d2d969b27d3900a41337a0ad389480eae7 /compiler/aslmain.c
parent65742a25f73183e6d4476539ba18aff6480e73d4 (diff)
Notes
Diffstat (limited to 'compiler/aslmain.c')
-rw-r--r--compiler/aslmain.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/compiler/aslmain.c b/compiler/aslmain.c
index 90faff739f8c..7b5345b29d62 100644
--- a/compiler/aslmain.c
+++ b/compiler/aslmain.c
@@ -296,7 +296,8 @@ Usage (
void)
{
- printf ("Usage: %s [Options] [Files]\n\n", CompilerName);
+ printf ("%s\n", ASL_COMPLIANCE);
+ printf ("Usage: %s [Options] [Files]\n\n", ASL_INVOCATION_NAME);
Options ();
}
@@ -903,7 +904,7 @@ AslCommandLine (
if (argc < 2)
{
- AslCompilerSignon (ASL_FILE_STDOUT);
+ printf (ACPI_COMMON_SIGNON (ASL_COMPILER_NAME));
Usage ();
exit (1);
}
@@ -934,7 +935,7 @@ AslCommandLine (
if (Gbl_DoSignon)
{
- AslCompilerSignon (ASL_FILE_STDOUT);
+ printf (ACPI_COMMON_SIGNON (ASL_COMPILER_NAME));
}
/* Abort if anything went wrong on the command line */