svn commit: r227158 - head/usr.bin/colcrt

Ed Schouten ed at FreeBSD.org
Sun Nov 6 08:14:28 UTC 2011


Author: ed
Date: Sun Nov  6 08:14:28 2011
New Revision: 227158
URL: http://svn.freebsd.org/changeset/base/227158

Log:
  Add missing static keywords to colcrt(1)

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

Modified: head/usr.bin/colcrt/colcrt.c
==============================================================================
--- head/usr.bin/colcrt/colcrt.c	Sun Nov  6 08:14:22 2011	(r227157)
+++ head/usr.bin/colcrt/colcrt.c	Sun Nov  6 08:14:28 2011	(r227158)
@@ -64,13 +64,13 @@ __FBSDID("$FreeBSD$");
  * Option -2 forces printing of all half lines.
  */
 
-wchar_t	page[267][132];
+static wchar_t	page[267][132];
 
-int	outline = 1;
-int	outcol;
+static int	outline = 1;
+static int	outcol;
 
-char	suppresul;
-char	printall;
+static char	suppresul;
+static char	printall;
 
 static void	move(int, int);
 static void	pflush(int);


More information about the svn-src-all mailing list