From d2aa301d2e200cf8422ae48ff7e86d7996e64004 Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Sun, 6 Nov 2011 08:15:17 +0000 Subject: [PATCH] Add missing static keywords to du(1) --- usr.bin/du/du.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/du/du.c b/usr.bin/du/du.c index cdaa70da41c0..86d8863b595c 100644 --- a/usr.bin/du/du.c +++ b/usr.bin/du/du.c @@ -61,7 +61,7 @@ __FBSDID("$FreeBSD$"); #include #include -SLIST_HEAD(ignhead, ignentry) ignores; +static SLIST_HEAD(ignhead, ignentry) ignores; struct ignentry { char *mask; SLIST_ENTRY(ignentry) next;