mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
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>
This commit is contained in:
parent
8b3692d136
commit
7b0a03a1ea
2 changed files with 2 additions and 2 deletions
|
@ -146,7 +146,7 @@ static kbd_layout_t *parse_keyboard_layout(const name2keysym_t *table,
|
|||
if (rest && strstr(rest, "addupper")) {
|
||||
char *c;
|
||||
for (c = line; *c; c++)
|
||||
*c = toupper(*c);
|
||||
*c = qemu_toupper(*c);
|
||||
keysym = get_keysym(table, line);
|
||||
if (keysym)
|
||||
add_keysym(line, keysym, keycode | SCANCODE_SHIFT, k);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue