From 102f8ed4bc3666761cc6ee9a138c49c6ba6f900b Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sat, 19 Jan 2019 21:21:35 +0000 Subject: [PATCH] p112: static tty buffers --- Kernel/platform-p112/devtty.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 }, -- 2.34.1