typos (Pavel Janik)

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@848 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2004-05-22 21:41:05 +00:00
parent a00bad7ed4
commit 5b60212f2a

View File

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