aboutsummaryrefslogtreecommitdiff
path: root/sys/contrib/dev/acpica/components/debugger/dbinput.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/contrib/dev/acpica/components/debugger/dbinput.c')
-rw-r--r--sys/contrib/dev/acpica/components/debugger/dbinput.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/contrib/dev/acpica/components/debugger/dbinput.c b/sys/contrib/dev/acpica/components/debugger/dbinput.c
index 50463d06d461..76a3aa112299 100644
--- a/sys/contrib/dev/acpica/components/debugger/dbinput.c
+++ b/sys/contrib/dev/acpica/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++;
}