diff options
Diffstat (limited to 'src/arch/x86/exception.c')
-rw-r--r-- | src/arch/x86/exception.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/exception.c b/src/arch/x86/exception.c index cbf0358839..84328be2c1 100644 --- a/src/arch/x86/exception.c +++ b/src/arch/x86/exception.c @@ -513,9 +513,9 @@ void x86_exception(struct eregs *info) * evident from the looking at the dump */ code = (u8*)((uintptr_t)code & ~0x7); int i; - for(i = 0; i < MDUMP_SIZE; i++) + for (i = 0; i < MDUMP_SIZE; i++) { - if( (i & 0x07) == 0 ) + if ( (i & 0x07) == 0 ) printk(BIOS_EMERG, "\n%p:\t", code + i); printk(BIOS_EMERG, "%.2x ", code[i]); } |