]> err.no Git - util-linux/commitdiff
swapon: make needlessly global variables static
authorTobias Klauser <tklauser@distanz.ch>
Fri, 21 Jan 2011 15:44:18 +0000 (16:44 +0100)
committerKarel Zak <kzak@redhat.com>
Mon, 31 Jan 2011 15:13:16 +0000 (16:13 +0100)
Also constify the option array.

Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
mount/swapon.c

index e9ccc94a3ae977fa939ee79f6bf8fbd9171f77b1..2c0dd9fa38789fc0c3434f9074b6bc7a9cf0d5c8 100644 (file)
@@ -58,18 +58,18 @@ enum {
 #define SWAP_SIGNATURE         "SWAPSPACE2"
 #define SWAP_SIGNATURE_SZ      (sizeof(SWAP_SIGNATURE) - 1)
 
-int all;
-int priority = -1;     /* non-prioritized swap by default */
-int discard;
+static int all;
+static int priority = -1;      /* non-prioritized swap by default */
+static int discard;
 
 /* If true, don't complain if the device/file doesn't exist */
-int ifexists;
-int fixpgsz;
+static int ifexists;
+static int fixpgsz;
 
-int verbose;
-char *progname;
+static int verbose;
+static char *progname;
 
-static struct option longswaponopts[] = {
+static const struct option longswaponopts[] = {
                /* swapon only */
        { "priority", required_argument, 0, 'p' },
        { "discard", 0, 0, 'd' },
@@ -84,7 +84,7 @@ static struct option longswaponopts[] = {
        { NULL, 0, 0, 0 }
 };
 
-static struct option *longswapoffopts = &longswaponopts[4];
+static const struct option *longswapoffopts = &longswaponopts[4];
 
 static int cannot_find(const char *special);