]> git.proxmox.com Git - mirror_qemu.git/commitdiff
typos (Pavel Janik)
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Sat, 22 May 2004 21:41:05 +0000 (21:41 +0000)
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Sat, 22 May 2004 21:41:05 +0000 (21:41 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@848 c046a42c-6fe2-441c-8c8c-71466251a162

monitor.c

index ab1c842bcd3bf81b9789f9e323f7253579e125de..524a281c988f8e3902e6d637acb6b1e3927c90f3 100644 (file)
--- a/monitor.c
+++ b/monitor.c
@@ -815,7 +815,7 @@ static int expr_prod(void)
         case '/':
         case '%':
             if (val2 == 0) 
-                expr_error("divison by zero");
+                expr_error("division by zero");
             if (op == '/')
                 val /= val2;
             else
@@ -933,7 +933,7 @@ static int get_str(char *buf, int buf_size, const char **pp)
             }
         }
         if (*p != '\"') {
-            qemu_printf("untermintated string\n");
+            qemu_printf("unterminated string\n");
             goto fail;
         }
         p++;