diff options
Diffstat (limited to 'src/console/early_print.c')
-rw-r--r-- | src/console/early_print.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |