From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LwYdd-0007BQ-IJ for qemu-devel@nongnu.org; Wed, 22 Apr 2009 05:21:05 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LwYdY-00079S-8b for qemu-devel@nongnu.org; Wed, 22 Apr 2009 05:21:04 -0400 Received: from [199.232.76.173] (port=37611 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LwYdX-00079G-Qx for qemu-devel@nongnu.org; Wed, 22 Apr 2009 05:20:59 -0400 Received: from lizzard.sbs.de ([194.138.37.39]:17047) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LwYdX-00016c-DJ for qemu-devel@nongnu.org; Wed, 22 Apr 2009 05:20:59 -0400 Message-ID: <49EEE172.5060501@siemens.com> Date: Wed, 22 Apr 2009 11:20:50 +0200 From: Jan Kiszka MIME-Version: 1.0 References: In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH] monitor: Fix warning in do_info_numa List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: andre.przywara@amd.com, qemu-devel@nongnu.org Signed-off-by: Jan Kiszka --- monitor.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/monitor.c b/monitor.c index 3e945db..b33fea1 100644 --- a/monitor.c +++ b/monitor.c @@ -1411,7 +1411,7 @@ static void do_info_kvm(Monitor *mon) static void do_info_numa(Monitor *mon) { - int i, j; + int i; CPUState *env; monitor_printf(mon, "%d nodes\n", nb_numa_nodes);