diff options
author | Christoph Egger <Christoph.Egger@amd.com> | 2011-09-21 11:10:52 +0100 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | 2011-09-21 11:10:52 +0100 |
commit | 7b0a03a1eab52ed2f59c8e4cb2210ee74433a820 (patch) | |
tree | a378a2584dd6efb08254147753c1206fda2ff499 /cmd.c | |
parent | 8b3692d13620549c2ca85d9201c32d47b74bb755 (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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -389,7 +389,7 @@ cvtnum( if (sp[1] != '\0') return -1LL; - c = tolower(*sp); + c = qemu_tolower(*sp); switch (c) { default: return i; |