aboutsummaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorEd Schouten <ed@FreeBSD.org>2012-10-19 14:49:42 +0000
committerEd Schouten <ed@FreeBSD.org>2012-10-19 14:49:42 +0000
commitbf70becee6ff4798acdcfd586a88ad38b7b17495 (patch)
treeddffe542a2e921ec48c73d322a2046f559a9d74f /libexec
parent39893d565a6c4b948fc0ba1b8c22ee1d57f2aaa4 (diff)
downloadsrc-bf70becee6ff4798acdcfd586a88ad38b7b17495.tar.gz
src-bf70becee6ff4798acdcfd586a88ad38b7b17495.zip
More -Wmissing-variable-declarations fixes.
In addition to adding `static' where possible: - bin/date: Move `retval' into extern.h to make it visible to date.c. - bin/ed: Move globally used variables into ed.h. - sbin/camcontrol: Move `verbose' into camcontrol.h and fix shadow warnings. - usr.bin/calendar: Remove unneeded variables. - usr.bin/chat: Make `line' local instead of global. - usr.bin/elfdump: Comment out unneeded function. - usr.bin/rlogin: Use _Noreturn instead of __dead2. - usr.bin/tset: Pull `Ospeed' into extern.h. - usr.sbin/mfiutil: Put global variables in mfiutil.h. - usr.sbin/pkg: Remove unused `os_corres'. - usr.sbin/quotaon, usr.sbin/repquota: Remove unused `qfname'.
Notes
Notes: svn path=/head/; revision=241737
Diffstat (limited to 'libexec')
-rw-r--r--libexec/rtld-aout/shlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/rtld-aout/shlib.c b/libexec/rtld-aout/shlib.c
index 5cfa3f3f128a..70c531322482 100644
--- a/libexec/rtld-aout/shlib.c
+++ b/libexec/rtld-aout/shlib.c
@@ -62,7 +62,7 @@
char **search_dirs;
int n_search_dirs;
-const char *standard_search_dirs[] = {
+static const char *standard_search_dirs[] = {
STANDARD_SEARCH_DIRS
};