From: Alan Cox Date: Sat, 19 Jan 2019 21:24:19 +0000 (+0000) Subject: n8vem: static tty buffers X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=c73a384b2bee64cd95ac7b8885a74bbb27c3ed89;p=FUZIX.git n8vem: static tty buffers --- diff --git a/Kernel/platform-n8vem-mark4/devtty.c b/Kernel/platform-n8vem-mark4/devtty.c index 2ee97260..6947c38f 100644 --- a/Kernel/platform-n8vem-mark4/devtty.c +++ b/Kernel/platform-n8vem-mark4/devtty.c @@ -7,11 +7,11 @@ #include #include -char tbuf1[TTYSIZ]; -char tbuf2[TTYSIZ]; +static char tbuf1[TTYSIZ]; +static char tbuf2[TTYSIZ]; #ifdef CONFIG_PROPIO2 -char tbufp[TTYSIZ]; +static char tbufp[TTYSIZ]; #endif struct s_queue ttyinq[NUM_DEV_TTY+1] = { /* ttyinq[0] is never used */