Date: Sun, 6 Nov 2011 08:18:05 +0000 (UTC) From: Ed Schouten <ed@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r227192 - head/usr.bin/unexpand Message-ID: <201111060818.pA68I5tw009476@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201111060818.pA68I5tw009476>