diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-05-22 21:41:05 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-05-22 21:41:05 +0000 |
commit | 5b60212f2addaf6ccc7c5884c0605a1ccd413c48 (patch) | |
tree | e3b6e63ed9451561424a1875dae5b54fc52b0443 /monitor.c | |
parent | a00bad7ed468da05916a9344f8ee0eed647e2b32 (diff) |
typos (Pavel Janik)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@848 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'monitor.c')
-rw-r--r-- | monitor.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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++; |