qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
To: qemu-devel@nongnu.org
Cc: Anthony Liguori <aliguori@us.ibm.com>,
	Christoph Egger <Christoph.Egger@amd.com>,
	Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Subject: [Qemu-devel] [PATCH 8/8] use qemu_* ctype functions
Date: Wed, 21 Sep 2011 11:26:06 +0100	[thread overview]
Message-ID: <1316600766-5541-9-git-send-email-stefanha@linux.vnet.ibm.com> (raw)
In-Reply-To: <1316600766-5541-1-git-send-email-stefanha@linux.vnet.ibm.com>

From: Christoph Egger <Christoph.Egger@amd.com>

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>
---
 cmd.c        |    2 +-
 ui/keymaps.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/cmd.c b/cmd.c
index ecca167..f77897e 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;
diff --git a/ui/keymaps.c b/ui/keymaps.c
index 81003bb..f54a114 100644
--- a/ui/keymaps.c
+++ b/ui/keymaps.c
@@ -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);
-- 
1.7.5.4

  parent reply	other threads:[~2011-09-21 10:26 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-09-21 10:25 [Qemu-devel] [PULL 0/8] Trivial patches for September 10 to 21 2011 Stefan Hajnoczi
2011-09-21 10:25 ` [Qemu-devel] [PATCH 1/8] target-i386: Remove data type CCTable Stefan Hajnoczi
2011-09-21 10:26 ` [Qemu-devel] [PATCH 2/8] configure: Make missing pkg-config an error rather than a warning Stefan Hajnoczi
2011-09-21 10:26 ` [Qemu-devel] [PATCH 3/8] fix compilation with stderr trace backend Stefan Hajnoczi
2011-09-21 10:26 ` [Qemu-devel] [PATCH 4/8] Drop unneeded pthread.h inclusions Stefan Hajnoczi
2011-09-21 10:26 ` [Qemu-devel] [PATCH 5/8] Silence make if nothing is to do for libcacard Stefan Hajnoczi
2011-09-21 10:26 ` [Qemu-devel] [PATCH 6/8] Abort on thread layer errors Stefan Hajnoczi
2011-09-21 10:26 ` [Qemu-devel] [PATCH 7/8] Remove qemu_host_page_bits Stefan Hajnoczi
2011-09-21 10:26 ` Stefan Hajnoczi [this message]
2011-09-22 15:58 ` [Qemu-devel] [PULL 0/8] Trivial patches for September 10 to 21 2011 Anthony Liguori

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1316600766-5541-9-git-send-email-stefanha@linux.vnet.ibm.com \
    --to=stefanha@linux.vnet.ibm.com \
    --cc=Christoph.Egger@amd.com \
    --cc=aliguori@us.ibm.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).