From 5b02333e84f8998d65b39ad509f9c9c5b9df1186 Mon Sep 17 00:00:00 2001 From: ed Date: Fri, 4 Nov 2011 13:36:02 +0000 Subject: 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. --- sbin/mount_udf/mount_udf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sbin/mount_udf') diff --git a/sbin/mount_udf/mount_udf.c b/sbin/mount_udf/mount_udf.c index 0175f20..033db70 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 -- cgit v1.1