From ddcb681265a49eb7cadc1cdf9a1ce05cc316e0c7 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Fri, 13 Feb 2015 21:11:31 +0000 Subject: [PATCH] devtty: fix bogus space --- Kernel/platform-zx128/devtty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/platform-zx128/devtty.c b/Kernel/platform-zx128/devtty.c index afb7ee42..0f02992a 100644 --- a/Kernel/platform-zx128/devtty.c +++ b/Kernel/platform-zx128/devtty.c @@ -160,7 +160,7 @@ static void keydecode(void) else if (c == ' ') c = KEY_STOP; /* ^C map for BREAK */ else if (c >= '5' && c <= '8') - c = cursor[c - '5']; + c = cursor[c - '5']; } } -- 2.34.1