diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2010-09-15 20:49:34 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2010-09-15 20:49:34 +0000 |
commit | 09e3e7cd5c7eb44bd5f632149ad28aef7f2d0690 (patch) | |
tree | 41eb78500422196a69e6d775b795f5ee483d4a9e /compiler/aslerror.c | |
parent | 32e234a854ae3097bb902cf421f91f9c7d24b291 (diff) |
Notes
Diffstat (limited to 'compiler/aslerror.c')
-rw-r--r-- | compiler/aslerror.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/aslerror.c b/compiler/aslerror.c index ff24e62b7aa9..59d3d20b6fb7 100644 --- a/compiler/aslerror.c +++ b/compiler/aslerror.c @@ -304,7 +304,7 @@ AePrintException ( if (Enode->LineNumber) { - fprintf (OutputFile, "%6u: ", Enode->LineNumber); + fprintf (OutputFile, " %6u: ", Enode->LineNumber); /* * Seek to the offset in the combined source file, read the source @@ -358,7 +358,7 @@ AePrintException ( { /* Decode the message ID */ - fprintf (OutputFile, "%s %4.4d -", + fprintf (OutputFile, "%s %4.4d - ", AslErrorLevel[Enode->Level], Enode->MessageId + ((Enode->Level+1) * 1000)); |