diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2016-08-21 17:37:15 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-08-28 18:48:30 +0200 |
commit | dbf30678ee658fedca68a75277cd5c005d9833ef (patch) | |
tree | ec920ccfdf7583cbf4721a781ad361bacd7a44d7 /src/arch/x86/exception.c | |
parent | cbe7464c623d148c96974f0ce8724ead0ad5478d (diff) |
src/arch: Add required space before opening parenthesis '('
Change-Id: I8a44a58506d7cf5ebc9fe7ac4f2b46f9544ba61a
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/16287
Tested-by: build bot (Jenkins)
Reviewed-by: Omar Pakker
Reviewed-by: Martin Roth <martinroth@google.com>
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]); } |