svn commit: r227164 - head/usr.bin/du

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


Author: ed
Date: Sun Nov  6 08:15:17 2011
New Revision: 227164
URL: http://svn.freebsd.org/changeset/base/227164

Log:
  Add missing static keywords to du(1)

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

Modified: head/usr.bin/du/du.c
==============================================================================
--- head/usr.bin/du/du.c	Sun Nov  6 08:14:57 2011	(r227163)
+++ head/usr.bin/du/du.c	Sun Nov  6 08:15:17 2011	(r227164)
@@ -61,7 +61,7 @@ __FBSDID("$FreeBSD$");
 #include <sysexits.h>
 #include <unistd.h>
 
-SLIST_HEAD(ignhead, ignentry) ignores;
+static SLIST_HEAD(ignhead, ignentry) ignores;
 struct ignentry {
 	char			*mask;
 	SLIST_ENTRY(ignentry)	next;


More information about the svn-src-head mailing list