Elyes HAOUAS has uploaded this change for review. ( https://review.coreboot.org/25854
Change subject: src/console: Add whitespace around '==' ......................................................................
src/console: Add whitespace around '=='
Change-Id: I61ff3adb573ffc99f37a1cdcbf5d0d83b2dec0ed Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/console/vtxprintf.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/54/25854/1
diff --git a/src/console/vtxprintf.c b/src/console/vtxprintf.c index acf2f80..88295a2 100644 --- a/src/console/vtxprintf.c +++ b/src/console/vtxprintf.c @@ -111,9 +111,9 @@ 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++; }