From: Alan Cox Date: Sat, 19 Jan 2019 21:21:35 +0000 (+0000) Subject: p112: static tty buffers X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=102f8ed4bc3666761cc6ee9a138c49c6ba6f900b;p=FUZIX.git p112: static tty buffers --- diff --git a/Kernel/platform-p112/devtty.c b/Kernel/platform-p112/devtty.c index 5f4a57b1..f62e5d7a 100644 --- a/Kernel/platform-p112/devtty.c +++ b/Kernel/platform-p112/devtty.c @@ -44,11 +44,11 @@ * - implement RTS/CTS for ASCI (waiting on my making up a cable ...) */ -char tbuf1[TTYSIZ]; -char tbuf2[TTYSIZ]; -char tbuf3[TTYSIZ]; -char tbuf4[TTYSIZ]; -char tbuf5[TTYSIZ]; +static char tbuf1[TTYSIZ]; +static char tbuf2[TTYSIZ]; +static char tbuf3[TTYSIZ]; +static char tbuf4[TTYSIZ]; +static char tbuf5[TTYSIZ]; struct s_queue ttyinq[NUM_DEV_TTY+1] = { /* ttyinq[0] is never used */ { NULL, NULL, NULL, 0, 0, 0 },