From: Brett Gordon Date: Sun, 1 Nov 2015 13:45:04 +0000 (-0500) Subject: vt.c: bugfix: add closing parens. X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=97710dc5d6763876a98966ecb6eaf9fb46905bbc;p=FUZIX.git vt.c: bugfix: add closing parens. --- 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;