From a4634ed7779f0905e3bfeb781e58d40a5bdf9bb7 Mon Sep 17 00:00:00 2001 From: Jung-uk Kim Date: Mon, 4 Jan 2021 17:20:55 -0500 Subject: Import ACPICA 20201217. --- source/components/debugger/dbinput.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/components/debugger/dbinput.c') 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++; } -- cgit v1.3