Commit 0cfec834c5d532f32d29b8dc804cb4daeb1ed64a

Authored by ths
1 parent 35cc6f8b

Spelling fixes, by Aurelien Jarno.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3009 c046a42c-6fe2-441c-8c8c-71466251a162
monitor.c
... ... @@ -784,7 +784,7 @@ static const KeyDef key_defs[] = {
784 784  
785 785 { 0xb5, "kp_divide" },
786 786 { 0x37, "kp_multiply" },
787   - { 0x4a, "kp_substract" },
  787 + { 0x4a, "kp_subtract" },
788 788 { 0x4e, "kp_add" },
789 789 { 0x9c, "kp_enter" },
790 790 { 0x53, "kp_decimal" },
... ...
qemu-img.c
... ... @@ -297,7 +297,7 @@ static int img_create(int argc, char **argv)
297 297 drv = bdrv_find_format(fmt);
298 298 if (!drv)
299 299 error("Unknown file format '%s'", fmt);
300   - printf("Formating '%s', fmt=%s",
  300 + printf("Formatting '%s', fmt=%s",
301 301 filename, fmt);
302 302 if (encrypted)
303 303 printf(", encrypted");
... ...
target-ppc/cpu.h
... ... @@ -1326,7 +1326,7 @@ enum {
1326 1326 EXCP_FP_ZX = 0x03, /* FP divide by zero */
1327 1327 EXCP_FP_XX = 0x04, /* FP inexact */
1328 1328 EXCP_FP_VXNAN = 0x05, /* FP invalid SNaN op */
1329   - EXCP_FP_VXISI = 0x06, /* FP invalid infinite substraction */
  1329 + EXCP_FP_VXISI = 0x06, /* FP invalid infinite subtraction */
1330 1330 EXCP_FP_VXIDI = 0x07, /* FP invalid infinite divide */
1331 1331 EXCP_FP_VXZDZ = 0x08, /* FP invalid zero divide */
1332 1332 EXCP_FP_VXIMZ = 0x09, /* FP invalid infinite * zero */
... ...
target-ppc/op.c
... ... @@ -1025,7 +1025,7 @@ void OPPROTO op_nego_64 (void)
1025 1025 }
1026 1026 #endif
1027 1027  
1028   -/* substract from */
  1028 +/* subtract from */
1029 1029 PPC_OP(subf)
1030 1030 {
1031 1031 T0 = T1 - T0;
... ... @@ -1058,7 +1058,7 @@ void OPPROTO op_check_subfo_64 (void)
1058 1058 }
1059 1059 #endif
1060 1060  
1061   -/* substract from carrying */
  1061 +/* subtract from carrying */
1062 1062 void OPPROTO op_check_subfc (void)
1063 1063 {
1064 1064 if (likely((uint32_t)T0 > (uint32_t)T1)) {
... ... @@ -1081,7 +1081,7 @@ void OPPROTO op_check_subfc_64 (void)
1081 1081 }
1082 1082 #endif
1083 1083  
1084   -/* substract from extended */
  1084 +/* subtract from extended */
1085 1085 void OPPROTO op_subfe (void)
1086 1086 {
1087 1087 do_subfe();
... ... @@ -1096,7 +1096,7 @@ void OPPROTO op_subfe_64 (void)
1096 1096 }
1097 1097 #endif
1098 1098  
1099   -/* substract from immediate carrying */
  1099 +/* subtract from immediate carrying */
1100 1100 void OPPROTO op_subfic (void)
1101 1101 {
1102 1102 T0 = (int32_t)PARAM1 + ~T0 + 1;
... ... @@ -1121,7 +1121,7 @@ void OPPROTO op_subfic_64 (void)
1121 1121 }
1122 1122 #endif
1123 1123  
1124   -/* substract from minus one extended */
  1124 +/* subtract from minus one extended */
1125 1125 void OPPROTO op_subfme (void)
1126 1126 {
1127 1127 T0 = ~T0 + xer_ca - 1;
... ... @@ -1154,7 +1154,7 @@ void OPPROTO op_subfmeo_64 (void)
1154 1154 }
1155 1155 #endif
1156 1156  
1157   -/* substract from zero extended */
  1157 +/* subtract from zero extended */
1158 1158 void OPPROTO op_subfze (void)
1159 1159 {
1160 1160 T1 = ~T0;
... ...