From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53959) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WzJdK-0005kx-P0 for qemu-devel@nongnu.org; Tue, 24 Jun 2014 01:51:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WzJdG-00027C-5Y for qemu-devel@nongnu.org; Tue, 24 Jun 2014 01:51:06 -0400 Received: from mx1.redhat.com ([209.132.183.28]:58094) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WzJdF-000274-T9 for qemu-devel@nongnu.org; Tue, 24 Jun 2014 01:51:02 -0400 Date: Tue, 24 Jun 2014 08:51:23 +0300 From: "Michael S. Tsirkin" Message-ID: <1403589076-25812-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH] numa: fix comment List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Hu Tao , Eduardo Habkost , Wanlong Gao , Paolo Bonzini s/if given for/is given for/; Reported-by: Hu Tao Signed-off-by: Michael S. Tsirkin --- numa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numa.c b/numa.c index 47049a5..6c2eae7 100644 --- a/numa.c +++ b/numa.c @@ -161,7 +161,7 @@ void set_numa_nodes(void) nb_numa_nodes = MAX_NODES; } - /* If no memory size if given for any node, assume the default case + /* If no memory size is given for any node, assume the default case * and distribute the available memory equally across all nodes */ for (i = 0; i < nb_numa_nodes; i++) { -- MST