vt: Don't assume char is signed (next sdcc will change this, 6502 isnt)
authorAlan Cox <alan@etchedpixels.co.uk>
Tue, 11 Nov 2014 12:36:01 +0000 (12:36 +0000)
committerAlan Cox <alan@etchedpixels.co.uk>
Tue, 11 Nov 2014 12:36:01 +0000 (12:36 +0000)
Kernel/vt.c

index 541b1c0..be17c30 100644 (file)
@@ -39,8 +39,8 @@
 
 
 static int vtmode;
-static char cursorx;
-static char cursory;
+static signed char cursorx;
+static signed char cursory;
 static int ncursory;
 
 static void cursor_fix(void)