From 97710dc5d6763876a98966ecb6eaf9fb46905bbc Mon Sep 17 00:00:00 2001 From: Brett Gordon Date: Sun, 1 Nov 2015 08:45:04 -0500 Subject: [PATCH] vt.c: bugfix: add closing parens. --- Kernel/vt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/vt.c b/Kernel/vt.c index 93375f63..0e13506c 100644 --- a/Kernel/vt.c +++ b/Kernel/vt.c @@ -243,7 +243,7 @@ void vtoutput(unsigned char *p, unsigned int len) if (ncursorx >= 0 && ncursorx <= VT_RIGHT) cursorx = ncursorx; vtmode = 0; - } else if (vtmode == 4 { + } else if (vtmode == 4) { vtattr = c; vtmode = 0; continue; -- 2.34.1