summaryrefslogtreecommitdiff
path: root/console.c
diff options
context:
space:
mode:
Diffstat (limited to 'console.c')
-rw-r--r--console.c2
1 files changed, 1 insertions, 1 deletions
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){