diff options
author | Ed Schouten <ed@FreeBSD.org> | 2011-11-04 13:36:02 +0000 |
---|---|---|
committer | Ed Schouten <ed@FreeBSD.org> | 2011-11-04 13:36:02 +0000 |
commit | 1efe3c6b58ea5d0e5a0d49039d84d00f2370c7de (patch) | |
tree | 3cdfecf4c6772b1de7694dadb6b4b6431ecfdb02 /sbin/mount_udf | |
parent | 543d97bb43fb77ba5b415ea464b9bb32b614d65c (diff) |
Add missing static keywords for global variables to tools in sbin/.
These tools declare global variables without using the static keyword,
even though their use is limited to a single C-file, or without placing
an extern declaration of them in the proper header file.
Notes
Notes:
svn path=/head/; revision=227081
Diffstat (limited to 'sbin/mount_udf')
-rw-r--r-- | sbin/mount_udf/mount_udf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/mount_udf/mount_udf.c b/sbin/mount_udf/mount_udf.c index 0175f20f24fd..033db70b9e6f 100644 --- a/sbin/mount_udf/mount_udf.c +++ b/sbin/mount_udf/mount_udf.c @@ -61,7 +61,7 @@ #include "mntopts.h" -struct mntopt mopts[] = { +static struct mntopt mopts[] = { MOPT_STDOPTS, MOPT_UPDATE, MOPT_END |