From: Derek Ou Date: Tue, 3 Feb 2009 23:00:07 +0000 (-0700) Subject: lcd_putc bug fix for tab. X-Git-Tag: v2009.03-rc1~14 X-Git-Url: https://git.kernelconcepts.de/?a=commitdiff_plain;h=6bcb4b806cef8a5dd08fac9a4a672b96d9ee804e;p=karo-tx-uboot.git lcd_putc bug fix for tab. Signed-off-by: Derek Ou --- diff --git a/common/lcd.c b/common/lcd.c index 5f73247f42..2bcdba2257 100644 --- a/common/lcd.c +++ b/common/lcd.c @@ -187,7 +187,7 @@ void lcd_putc (const char c) return; case '\t': /* Tab (8 chars alignment) */ - console_col |= 8; + console_col += 8; console_col &= ~7; if (console_col >= CONSOLE_COLS) {