aboutsummaryrefslogtreecommitdiff
path: root/cmd.c
diff options
context:
space:
mode:
authorChristoph Egger <Christoph.Egger@amd.com>2011-09-21 11:10:52 +0100
committerStefan Hajnoczi <stefanha@linux.vnet.ibm.com>2011-09-21 11:10:52 +0100
commit7b0a03a1eab52ed2f59c8e4cb2210ee74433a820 (patch)
treea378a2584dd6efb08254147753c1206fda2ff499 /cmd.c
parent8b3692d13620549c2ca85d9201c32d47b74bb755 (diff)
use qemu_* ctype functions
Fix "warning: array subscript has type 'char'" on NetBSD. Signed-off-by: Christoph Egger <Christoph.Egger@amd.com> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'cmd.c')
-rw-r--r--cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd.c b/cmd.c
index ecca167399..f77897e00a 100644
--- a/cmd.c
+++ b/cmd.c
@@ -389,7 +389,7 @@ cvtnum(
if (sp[1] != '\0')
return -1LL;
- c = tolower(*sp);
+ c = qemu_tolower(*sp);
switch (c) {
default:
return i;