src/console: Add spaces around '=='

Change-Id: I61ff3adb573ffc99f37a1cdcbf5d0d83b2dec0ed
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/25854
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Elyes HAOUAS 2018-04-26 10:00:35 +02:00 committed by Felix Held
parent 581fe58b8a
commit 20767baf0f
1 changed files with 2 additions and 2 deletions

View File

@ -111,9 +111,9 @@ static int number(void (*tx_byte)(unsigned char byte, void *data),
if (sign)
call_tx(sign), count++;
if (type & SPECIAL) {
if (base==8)
if (base == 8)
call_tx('0'), count++;
else if (base==16) {
else if (base == 16) {
call_tx('0'), count++;
call_tx(digits[33]), count++;
}