diff options
Diffstat (limited to 'src/devices/oprom/x86.c')
-rw-r--r-- | src/devices/oprom/x86.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/oprom/x86.c b/src/devices/oprom/x86.c index 4ed0ff8709..7df46283a9 100644 --- a/src/devices/oprom/x86.c +++ b/src/devices/oprom/x86.c @@ -318,7 +318,7 @@ int __attribute__((regparm(0))) interrupt_handler(u32 intnumber, /* Pass errors back to our caller via the CARRY flag */ if (ret) { - printk(BIOS_DEBUG,"error!\n"); + printk(BIOS_DEBUG,"int%02x call returned error.\n", intnumber); flags |= 1; // error: set carry }else{ flags &= ~1; // no error: clear carry |