It should be 'exception' instead of 'excecption'. Signed-off-by: Levente Kurusa <lkurusa@xxxxxxxxxx> --- lib/x86/desc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/x86/desc.c b/lib/x86/desc.c index 3237778..e3bf175 100644 --- a/lib/x86/desc.c +++ b/lib/x86/desc.c @@ -46,7 +46,7 @@ static void check_exception_table(struct ex_regs *regs) return; } } - printf("unhandled excecption %d\n", regs->vector); + printf("unhandled exception %d\n", regs->vector); exit(7); } @@ -68,7 +68,7 @@ void do_handle_exception(struct ex_regs *regs) exception_handlers[regs->vector](regs); return; } - printf("unhandled cpu excecption %d\n", regs->vector); + printf("unhandled cpu exception %d\n", regs->vector); if (regs->vector == 14) printf("PF at %p addr %p\n", regs->rip, read_cr2()); exit(7); -- 2.4.3 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html