From 3c80408fc8aa7b4099493acd7420f8d62ce65a48 Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Thu, 25 Aug 2016 21:02:20 +0200 Subject: src/console: Add required space before opening parenthesis '(' Change-Id: Ibb2ce383322c174bdb3bcc88ae35c17f179f6d21 Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/16323 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel Reviewed-by: Martin Roth --- src/console/early_print.c | 2 +- src/console/vtxprintf.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/console') diff --git a/src/console/early_print.c b/src/console/early_print.c index 900dd5d7a3..569b99dea8 100644 --- a/src/console/early_print.c +++ b/src/console/early_print.c @@ -52,7 +52,7 @@ void console_tx_hex32(unsigned int value) void console_tx_string(const char *str) { unsigned char ch; - while((ch = *str++) != '\0') { + while ((ch = *str++) != '\0') { if (ch == '\n') console_tx_byte('\r'); console_tx_byte(ch); diff --git a/src/console/vtxprintf.c b/src/console/vtxprintf.c index 8b4d4146b3..d20a387d44 100644 --- a/src/console/vtxprintf.c +++ b/src/console/vtxprintf.c @@ -106,7 +106,7 @@ static int number(void (*tx_byte)(unsigned char byte, void *data), precision = i; size -= precision; if (!(type&(ZEROPAD+LEFT))) - while(size-->0) + while (size-->0) call_tx(' '), count++; if (sign) call_tx(sign), count++; -- cgit v1.2.3