diff options
| author | rtm | 2006-07-20 09:07:53 +0000 |
|---|---|---|
| committer | rtm | 2006-07-20 09:07:53 +0000 |
| commit | 29270816285978e44b317c6e5c7bfa7a89ec24dd (patch) | |
| tree | fae6e6346ca73f7d2721c059a9f1fce166c045c7 /console.c | |
| parent | bd228a81566befa6154807d327d8c873f6a76c79 (diff) | |
uint32_t -> uint &c
Diffstat (limited to 'console.c')
| -rw-r--r-- | console.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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){ |
