From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45987) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WzIbM-0005ZG-CD for qemu-devel@nongnu.org; Tue, 24 Jun 2014 00:45:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WzIbG-0008EB-51 for qemu-devel@nongnu.org; Tue, 24 Jun 2014 00:45:00 -0400 Received: from mx1.redhat.com ([209.132.183.28]:28769) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WzIbF-0008E1-T8 for qemu-devel@nongnu.org; Tue, 24 Jun 2014 00:44:54 -0400 Date: Tue, 24 Jun 2014 07:45:15 +0300 From: "Michael S. Tsirkin" Message-ID: <1403585109-25174-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 Fix up English in comments: s/the each/each/ 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 e471afe..47049a5 100644 --- a/numa.c +++ b/numa.c @@ -172,7 +172,7 @@ void set_numa_nodes(void) if (i == nb_numa_nodes) { uint64_t usedmem = 0; - /* On Linux, the each node's border has to be 8MB aligned, + /* On Linux, each node's border has to be 8MB aligned, * the final node gets the rest. */ for (i = 0; i < nb_numa_nodes - 1; i++) { -- MST