summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pbl/console.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pbl/console.c b/pbl/console.c
index 3574753d23..4cefe74808 100644
--- a/pbl/console.c
+++ b/pbl/console.c
@@ -32,7 +32,7 @@ int console_puts(unsigned int ch, const char *str)
while (*str) {
if (*str == '\n')
- putc_ll('\r');
+ console_putc(CONSOLE_STDOUT, '\r');
console_putc(CONSOLE_STDOUT, *str);
str++;