From d7698e0766ef0ddee518d0a278eb6465d082e83b Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Sun, 6 Nov 2011 08:18:55 +0000 Subject: [PATCH] Add missing static keywords to wall(1) --- usr.bin/wall/wall.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/usr.bin/wall/wall.c b/usr.bin/wall/wall.c index eea253f7509..c3aa323665e 100644 --- a/usr.bin/wall/wall.c +++ b/usr.bin/wall/wall.c @@ -68,14 +68,14 @@ static const char sccsid[] = "@(#)wall.c 8.2 (Berkeley) 11/16/93"; static void makemsg(char *); static void usage(void); -struct wallgroup { +static struct wallgroup { struct wallgroup *next; char *name; gid_t gid; } *grouplist; -int nobanner; -int mbufsize; -char *mbuf; +static int nobanner; +static int mbufsize; +static char *mbuf; static int ttystat(char *line)