From 9b8aab8020c916e09bf1d33d7d4afa63b0133fbe Mon Sep 17 00:00:00 2001 From: Laurent Vivier Date: Mon, 23 May 2005 17:08:17 +0000 Subject: [PATCH] use putchar() instead of console_put() --- second/uncompress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/second/uncompress.c b/second/uncompress.c index 9d9dd95..87569bb 100644 --- a/second/uncompress.c +++ b/second/uncompress.c @@ -77,7 +77,7 @@ static void flush_window(void) output_ptr += (ulg)outcnt; outcnt = 0; - console_put('.'); + putchar('.'); } unsigned long uncompress(char* buf, char* image)