diff options
| author | Jung-uk Kim <jkim@FreeBSD.org> | 2021-01-04 22:20:55 +0000 |
|---|---|---|
| committer | Jung-uk Kim <jkim@FreeBSD.org> | 2021-01-04 22:20:55 +0000 |
| commit | a4634ed7779f0905e3bfeb781e58d40a5bdf9bb7 (patch) | |
| tree | 8e0e40f55257c63c3329cc4d985dd0640d3b2d26 /source/components/debugger | |
| parent | 960614968e0da10b32875a57ea1e30cc9c85b5e0 (diff) | |
Import ACPICA 20201217.vendor/acpica/20201217
Diffstat (limited to 'source/components/debugger')
| -rw-r--r-- | source/components/debugger/dbinput.c | 4 | ||||
| -rw-r--r-- | source/components/debugger/dbobject.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/source/components/debugger/dbinput.c b/source/components/debugger/dbinput.c index 0cc97310fa10..15e9f351b122 100644 --- a/source/components/debugger/dbinput.c +++ b/source/components/debugger/dbinput.c @@ -642,7 +642,7 @@ AcpiDbGetNextToken ( /* Remove any spaces at the beginning, ignore blank lines */ - while (*String && isspace (*String)) + while (*String && isspace ((int) *String)) { String++; } @@ -754,7 +754,7 @@ AcpiDbGetNextToken ( /* Find end of token */ - while (*String && !isspace (*String)) + while (*String && !isspace ((int) *String)) { String++; } diff --git a/source/components/debugger/dbobject.c b/source/components/debugger/dbobject.c index 01d885d03df7..a5af85d6beab 100644 --- a/source/components/debugger/dbobject.c +++ b/source/components/debugger/dbobject.c @@ -201,7 +201,7 @@ AcpiDbDumpMethodInfo ( /* Ignore control codes, they are not errors */ - if ((Status & AE_CODE_MASK) == AE_CODE_CONTROL) + if (ACPI_CNTL_EXCEPTION (Status)) { return; } |
