From: Alan Cox Date: Sat, 19 Jan 2019 21:36:12 +0000 (+0000) Subject: zetav2: static tty buffers X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=1b352a10c87535b19e66b0c23b4a16b1abac5c13;p=FUZIX.git zetav2: static tty buffers --- diff --git a/Kernel/platform-zeta-v2/devtty.c b/Kernel/platform-zeta-v2/devtty.c index 5ac85ef4..5ff29040 100644 --- a/Kernel/platform-zeta-v2/devtty.c +++ b/Kernel/platform-zeta-v2/devtty.c @@ -6,10 +6,10 @@ #include #include -char tbuf1[TTYSIZ]; +static char tbuf1[TTYSIZ]; #ifdef CONFIG_PPP -char tbufp[TTYSIZ]; +static char tbufp[TTYSIZ]; #endif unsigned char uart0_type;