svn commit: r227192 - head/usr.bin/unexpand
Ed Schouten
ed at FreeBSD.org
Sun Nov 6 08:18:06 UTC 2011
Author: ed
Date: Sun Nov 6 08:18:05 2011
New Revision: 227192
URL: http://svn.freebsd.org/changeset/base/227192
Log:
Add missing static keywords to unexpand(1)
Modified:
head/usr.bin/unexpand/unexpand.c
Modified: head/usr.bin/unexpand/unexpand.c
==============================================================================
--- head/usr.bin/unexpand/unexpand.c Sun Nov 6 08:17:59 2011 (r227191)
+++ head/usr.bin/unexpand/unexpand.c Sun Nov 6 08:18:05 2011 (r227192)
@@ -55,9 +55,9 @@ static const char sccsid[] = "@(#)unexpa
#include <wchar.h>
#include <wctype.h>
-int all;
-int nstops;
-int tabstops[100];
+static int all;
+static int nstops;
+static int tabstops[100];
static void getstops(const char *);
static void usage(void);
More information about the svn-src-all
mailing list