From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LvVhF-000239-Hi for qemu-devel@nongnu.org; Sun, 19 Apr 2009 08:00:29 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LvVh9-00021W-57 for qemu-devel@nongnu.org; Sun, 19 Apr 2009 08:00:27 -0400 Received: from [199.232.76.173] (port=56691 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LvVh9-00021T-18 for qemu-devel@nongnu.org; Sun, 19 Apr 2009 08:00:23 -0400 Received: from moutng.kundenserver.de ([212.227.126.186]:55736) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LvVh8-0000Yx-8B for qemu-devel@nongnu.org; Sun, 19 Apr 2009 08:00:22 -0400 Received: from localhost ([127.0.0.1] ident=stefan) by flocke.weilnetz.de with esmtp (Exim 4.69) (envelope-from ) id 1LvVh6-0002Sz-F1 for qemu-devel@nongnu.org; Sun, 19 Apr 2009 14:00:20 +0200 Message-ID: <49EB1254.1090201@mail.berlios.de> Date: Sun, 19 Apr 2009 14:00:20 +0200 From: Stefan Weil MIME-Version: 1.0 Subject: [Qemu-devel] [PATCH] Fix some comments (spelling) Content-Type: multipart/mixed; boundary="------------080309040300030906080600" Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU Developers This is a multi-part message in MIME format. --------------080309040300030906080600 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit --------------080309040300030906080600 Content-Type: text/x-diff; name="spelling.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="spelling.patch" Fix some comments (spelling). Signed-off-by: Stefan Weil Index: trunk/exec.c =================================================================== --- trunk.orig/exec.c 2009-04-19 13:32:50.000000000 +0200 +++ trunk/exec.c 2009-04-19 13:33:07.000000000 +0200 @@ -420,7 +420,7 @@ /* in user mode, phys_ram_size is not meaningful */ code_gen_buffer_size = DEFAULT_CODE_GEN_BUFFER_SIZE; #else - /* XXX: needs ajustments */ + /* XXX: needs adjustments */ code_gen_buffer_size = (unsigned long)(ram_size / 4); #endif } @@ -2314,7 +2314,7 @@ page size. If (phys_offset & ~TARGET_PAGE_MASK) != 0, then it is an io memory page. The address used when calling the IO function is the offset from the start of the region, plus region_offset. Both - start_region and regon_offset are rounded down to a page boundary + start_region and region_offset are rounded down to a page boundary before calculating this offset. This should not be a problem unless the low bits of start_addr and region_offset differ. */ void cpu_register_physical_memory_offset(target_phys_addr_t start_addr, Index: trunk/vnc.c =================================================================== --- trunk.orig/vnc.c 2009-04-19 13:32:21.000000000 +0200 +++ trunk/vnc.c 2009-04-19 13:33:07.000000000 +0200 @@ -65,7 +65,7 @@ } /* Enough for the existing format + the 2 vars we're - * subsituting in. */ + * substituting in. */ addrlen = strlen(format) + strlen(host) + strlen(serv); addr = qemu_malloc(addrlen + 1); snprintf(addr, addrlen, format, host, serv); --------------080309040300030906080600--