From bba4f0cea739d414cf93f6e611b7c42badb811c8 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sat, 19 Jan 2019 20:55:18 +0000 Subject: [PATCH] cromemco: make the tty buffers static --- Kernel/platform-cromemco/devtty.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Kernel/platform-cromemco/devtty.c b/Kernel/platform-cromemco/devtty.c index f803ee83..5ee1567b 100644 --- a/Kernel/platform-cromemco/devtty.c +++ b/Kernel/platform-cromemco/devtty.c @@ -6,9 +6,9 @@ #include #include -char tbuf1[TTYSIZ]; -char tbuf2[TTYSIZ]; -char tbuf3[TTYSIZ]; +static char tbuf1[TTYSIZ]; +static char tbuf2[TTYSIZ]; +static char tbuf3[TTYSIZ]; struct s_queue ttyinq[NUM_DEV_TTY+1] = { /* ttyinq[0] is never used */ { NULL, NULL, NULL, 0, 0, 0 }, -- 2.34.1