summaryrefslogtreecommitdiff
path: root/source/components/debugger/dbinput.c
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2015-06-17 17:11:44 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2015-06-17 17:11:44 +0000
commit764ef0515d13e66403dc8a0578ff91b88675ade6 (patch)
tree48d47011d3ce372b1584a942f077606b78e184ac /source/components/debugger/dbinput.c
parent8811b910b092027f905013bced1da3e87c6b07b9 (diff)
Notes
Diffstat (limited to 'source/components/debugger/dbinput.c')
-rw-r--r--source/components/debugger/dbinput.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/components/debugger/dbinput.c b/source/components/debugger/dbinput.c
index 76d2455dc1ae..e588167dd03e 100644
--- a/source/components/debugger/dbinput.c
+++ b/source/components/debugger/dbinput.c
@@ -361,7 +361,7 @@ AcpiDbMatchCommandHelp (
while ((*Command) && (*Invocation) && (*Invocation != ' '))
{
- if (tolower (*Command) != tolower (*Invocation))
+ if (tolower ((int) *Command) != tolower ((int) *Invocation))
{
return (FALSE);
}