diff options
Diffstat (limited to 'src/idt')
-rw-r--r-- | src/idt/exception.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/idt/exception.cc b/src/idt/exception.cc index efffd95..b15fe83 100644 --- a/src/idt/exception.cc +++ b/src/idt/exception.cc @@ -2,7 +2,7 @@ #include "cpu/registers.h" extern "C" void handle_exception(const cpu_state_t* r) { - printk("exception ", uhex{r->irq}, " error ", uhex{r->error}, "eip: ", uhex{r->eip}, '\n'); + printk("exception ", uhex{r->irq}, " ec ", uhex{r->error}, " eip: ", uhex{r->eip}, '\n'); abort(); }; |