From 29270816285978e44b317c6e5c7bfa7a89ec24dd Mon Sep 17 00:00:00 2001 From: rtm Date: Thu, 20 Jul 2006 09:07:53 +0000 Subject: uint32_t -> uint &c --- console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'console.c') diff --git a/console.c b/console.c index 5e6e5e1..9756c84 100644 --- a/console.c +++ b/console.c @@ -28,7 +28,7 @@ static void cons_putc(int c) { int crtport = 0x3d4; // io port of CGA - uint16_t *crt = (uint16_t *) 0xB8000; // base of CGA memory + ushort *crt = (ushort *) 0xB8000; // base of CGA memory int ind; if(panicked){ -- cgit v1.2.3