diff options
Diffstat (limited to 'source/tools/acpihelp/ahdecode.c')
-rw-r--r-- | source/tools/acpihelp/ahdecode.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source/tools/acpihelp/ahdecode.c b/source/tools/acpihelp/ahdecode.c index 8684c6a1c042..bca1eeb8b891 100644 --- a/source/tools/acpihelp/ahdecode.c +++ b/source/tools/acpihelp/ahdecode.c @@ -827,6 +827,7 @@ AhPrintOneField ( { printf ("\n%*s", (int) Indent, " "); } + printf ("%s", This); } } @@ -1014,7 +1015,8 @@ AhDecodeException ( if (!HexString) { printf ("All defined ACPICA exception codes:\n\n"); - AH_DISPLAY_EXCEPTION (0, "AE_OK (No error occurred)"); + AH_DISPLAY_EXCEPTION (0, + "AE_OK (No error occurred)"); /* Display codes in each block of exception types */ @@ -1028,6 +1030,7 @@ AhDecodeException ( { AH_DISPLAY_EXCEPTION_TEXT (Status, ExceptionInfo); } + Status++; } while (ExceptionInfo); |