svn commit: r227200 - head/usr.bin/wall

Ed Schouten ed at FreeBSD.org
Sun Nov 6 08:18:55 UTC 2011


Author: ed
Date: Sun Nov  6 08:18:55 2011
New Revision: 227200
URL: http://svn.freebsd.org/changeset/base/227200

Log:
  Add missing static keywords to wall(1)

Modified:
  head/usr.bin/wall/wall.c

Modified: head/usr.bin/wall/wall.c
==============================================================================
--- head/usr.bin/wall/wall.c	Sun Nov  6 08:18:47 2011	(r227199)
+++ head/usr.bin/wall/wall.c	Sun Nov  6 08:18:55 2011	(r227200)
@@ -68,14 +68,14 @@ static const char sccsid[] = "@(#)wall.c
 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)


More information about the svn-src-all mailing list