Date: Sun, 6 Nov 2011 08:15:18 +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: r227164 - head/usr.bin/du Message-ID: <201111060815.pA68FIvC008341@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201111060815.pA68FIvC008341>