From d4ab95137a8ce44405c6a1fe95199201c2f2bb4a Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Tue, 11 Nov 2014 12:36:01 +0000 Subject: [PATCH] vt: Don't assume char is signed (next sdcc will change this, 6502 isnt) --- Kernel/vt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel/vt.c b/Kernel/vt.c index 541b1c08..be17c30e 100644 --- a/Kernel/vt.c +++ b/Kernel/vt.c @@ -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) -- 2.34.1