Commit 5b60212f2addaf6ccc7c5884c0605a1ccd413c48

Authored by bellard
1 parent a00bad7e

typos (Pavel Janik)


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@848 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 2 additions and 2 deletions
monitor.c
... ... @@ -815,7 +815,7 @@ static int expr_prod(void)
815 815 case '/':
816 816 case '%':
817 817 if (val2 == 0)
818   - expr_error("divison by zero");
  818 + expr_error("division by zero");
819 819 if (op == '/')
820 820 val /= val2;
821 821 else
... ... @@ -933,7 +933,7 @@ static int get_str(char *buf, int buf_size, const char **pp)
933 933 }
934 934 }
935 935 if (*p != '\"') {
936   - qemu_printf("untermintated string\n");
  936 + qemu_printf("unterminated string\n");
937 937 goto fail;
938 938 }
939 939 p++;
... ...