From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1I1rZK-0000Ys-VK for qemu-devel@nongnu.org; Fri, 22 Jun 2007 18:25:30 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1I1rZK-0000Yb-Is for qemu-devel@nongnu.org; Fri, 22 Jun 2007 18:25:30 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I1rZK-0000YY-8Q for qemu-devel@nongnu.org; Fri, 22 Jun 2007 18:25:30 -0400 Received: from farad.aurel32.net ([82.232.2.251] helo=mail.aurel32.net) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1I1rZJ-00040V-Ou for qemu-devel@nongnu.org; Fri, 22 Jun 2007 18:25:30 -0400 Received: from farad.aurel32.net ([2001:618:400:fc13:216:3eff:fe00:100c]) by mail.aurel32.net with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.63) (envelope-from ) id 1I1rZC-0007uv-Nh for qemu-devel@nongnu.org; Sat, 23 Jun 2007 00:25:22 +0200 Received: from aurel32 by farad.aurel32.net with local (Exim 4.63) (envelope-from ) id 1I1rZC-00040e-Cu for qemu-devel@nongnu.org; Sat, 23 Jun 2007 00:25:22 +0200 Date: Sat, 23 Jun 2007 00:25:22 +0200 From: Aurelien Jarno Message-ID: <20070622222521.GA15407@farad.aurel32.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Subject: [Qemu-devel] [PATCH] Fix two typos Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Hi, The patch below, taken from the Debian package, fixes two typos: - substract -> subtract - formating -> formatting Bye, Aurelien Index: monitor.c =================================================================== RCS file: /sources/qemu/qemu/monitor.c,v retrieving revision 1.73 diff -u -d -p -r1.73 monitor.c --- monitor.c 24 May 2007 18:53:22 -0000 1.73 +++ monitor.c 22 Jun 2007 22:16:44 -0000 @@ -784,7 +784,7 @@ static const KeyDef key_defs[] = { { 0xb5, "kp_divide" }, { 0x37, "kp_multiply" }, - { 0x4a, "kp_substract" }, + { 0x4a, "kp_subtract" }, { 0x4e, "kp_add" }, { 0x9c, "kp_enter" }, { 0x53, "kp_decimal" }, Index: qemu-img.c =================================================================== RCS file: /sources/qemu/qemu/qemu-img.c,v retrieving revision 1.17 diff -u -d -p -r1.17 qemu-img.c --- qemu-img.c 10 Feb 2007 22:59:40 -0000 1.17 +++ qemu-img.c 22 Jun 2007 22:16:44 -0000 @@ -297,7 +297,7 @@ static int img_create(int argc, char **a drv = bdrv_find_format(fmt); if (!drv) error("Unknown file format '%s'", fmt); - printf("Formating '%s', fmt=%s", + printf("Formatting '%s', fmt=%s", filename, fmt); if (encrypted) printf(", encrypted"); Index: target-ppc/cpu.h =================================================================== RCS file: /sources/qemu/qemu/target-ppc/cpu.h,v retrieving revision 1.47 diff -u -d -p -r1.47 cpu.h --- target-ppc/cpu.h 3 Jun 2007 21:02:38 -0000 1.47 +++ target-ppc/cpu.h 22 Jun 2007 22:16:45 -0000 @@ -1326,7 +1326,7 @@ enum { EXCP_FP_ZX = 0x03, /* FP divide by zero */ EXCP_FP_XX = 0x04, /* FP inexact */ EXCP_FP_VXNAN = 0x05, /* FP invalid SNaN op */ - EXCP_FP_VXISI = 0x06, /* FP invalid infinite substraction */ + EXCP_FP_VXISI = 0x06, /* FP invalid infinite subtraction */ EXCP_FP_VXIDI = 0x07, /* FP invalid infinite divide */ EXCP_FP_VXZDZ = 0x08, /* FP invalid zero divide */ EXCP_FP_VXIMZ = 0x09, /* FP invalid infinite * zero */ Index: target-ppc/op.c =================================================================== RCS file: /sources/qemu/qemu/target-ppc/op.c,v retrieving revision 1.36 diff -u -d -p -r1.36 op.c --- target-ppc/op.c 24 Apr 2007 06:50:21 -0000 1.36 +++ target-ppc/op.c 22 Jun 2007 22:16:45 -0000 @@ -1025,7 +1025,7 @@ void OPPROTO op_nego_64 (void) } #endif -/* substract from */ +/* subtract from */ PPC_OP(subf) { T0 = T1 - T0; @@ -1058,7 +1058,7 @@ void OPPROTO op_check_subfo_64 (void) } #endif -/* substract from carrying */ +/* subtract from carrying */ void OPPROTO op_check_subfc (void) { if (likely((uint32_t)T0 > (uint32_t)T1)) { @@ -1081,7 +1081,7 @@ void OPPROTO op_check_subfc_64 (void) } #endif -/* substract from extended */ +/* subtract from extended */ void OPPROTO op_subfe (void) { do_subfe(); @@ -1096,7 +1096,7 @@ void OPPROTO op_subfe_64 (void) } #endif -/* substract from immediate carrying */ +/* subtract from immediate carrying */ void OPPROTO op_subfic (void) { T0 = (int32_t)PARAM1 + ~T0 + 1; @@ -1121,7 +1121,7 @@ void OPPROTO op_subfic_64 (void) } #endif -/* substract from minus one extended */ +/* subtract from minus one extended */ void OPPROTO op_subfme (void) { T0 = ~T0 + xer_ca - 1; @@ -1154,7 +1154,7 @@ void OPPROTO op_subfmeo_64 (void) } #endif -/* substract from zero extended */ +/* subtract from zero extended */ void OPPROTO op_subfze (void) { T1 = ~T0; -- .''`. Aurelien Jarno | GPG: 1024D/F1BCDB73 : :' : Debian developer | Electrical Engineer `. `' aurel32@debian.org | aurelien@aurel32.net `- people.debian.org/~aurel32 | www.aurel32.net