btrfs-progs: make getopt tables static const
authorDavid Sterba <dsterba@suse.cz>
Mon, 19 Jan 2015 12:44:49 +0000 (13:44 +0100)
committerDavid Sterba <dsterba@suse.cz>
Mon, 19 Jan 2015 12:44:49 +0000 (13:44 +0100)
Signed-off-by: David Sterba <dsterba@suse.cz>
btrfs-corrupt-block.c
btrfs-map-logical.c
cmds-balance.c
cmds-check.c
cmds-device.c
cmds-filesystem.c
cmds-qgroup.c
cmds-restore.c
cmds-subvolume.c
mkfs.c

index 91ff220..64f515e 100644 (file)
@@ -1019,7 +1019,7 @@ int main(int ac, char **av)
        while(1) {
                int c;
                int option_index = 0;
-               static struct option long_options[] = {
+               static const struct option long_options[] = {
                        /* { "byte-count", 1, NULL, 'b' }, */
                        { "logical", 1, NULL, 'l' },
                        { "copy", 1, NULL, 'c' },
index a9e66bf..b99d3bf 100644 (file)
@@ -128,7 +128,7 @@ int main(int ac, char **av)
        while(1) {
                int c;
                int option_index = 0;
-               static struct option long_options[] = {
+               static const struct option long_options[] = {
                        /* { "byte-count", 1, NULL, 'b' }, */
                        { "logical", 1, NULL, 'l' },
                        { "copy", 1, NULL, 'c' },
index 5de51bd..7524f33 100644 (file)
@@ -390,7 +390,7 @@ static int cmd_balance_start(int argc, char **argv)
        optind = 1;
        while (1) {
                int longindex;
-               static struct option longopts[] = {
+               static const struct option longopts[] = {
                        { "data", optional_argument, NULL, 'd'},
                        { "metadata", optional_argument, NULL, 'm' },
                        { "system", optional_argument, NULL, 's' },
@@ -662,7 +662,7 @@ static int cmd_balance_status(int argc, char **argv)
        optind = 1;
        while (1) {
                int longindex;
-               static struct option longopts[] = {
+               static const struct option longopts[] = {
                        { "verbose", no_argument, NULL, 'v' },
                        { NULL, no_argument, NULL, 0}
                };
index befee98..a2e8ebe 100644 (file)
@@ -8437,7 +8437,7 @@ int cmd_check(int argc, char **argv)
        while(1) {
                int c;
                int option_index = 0;
-               static struct option long_options[] = {
+               static const struct option long_options[] = {
                        { "super", 1, NULL, 's' },
                        { "repair", 0, NULL, 0 },
                        { "init-csum-tree", 0, NULL, 0 },
index 9dd52a4..ba9e6b3 100644 (file)
@@ -56,7 +56,7 @@ static int cmd_add_dev(int argc, char **argv)
 
        while (1) {
                int long_index;
-               static struct option long_options[] = {
+               static const struct option long_options[] = {
                        { "nodiscard", optional_argument, NULL, 'K'},
                        { "force", no_argument, NULL, 'f'},
                        { 0, 0, 0, 0 }
@@ -214,7 +214,7 @@ static int cmd_scan_dev(int argc, char **argv)
        optind = 1;
        while (1) {
                int long_index;
-               static struct option long_options[] = {
+               static const struct option long_options[] = {
                        { "all-devices", no_argument, NULL, 'd'},
                        { 0, 0, 0, 0 },
                };
index 30a7cc4..a99ddc8 100644 (file)
@@ -834,7 +834,7 @@ static int cmd_show(int argc, char **argv)
 
        while (1) {
                int long_index;
-               static struct option long_options[] = {
+               static const struct option long_options[] = {
                        { "all-devices", no_argument, NULL, 'd'},
                        { "mounted", no_argument, NULL, 'm'},
                        { NULL, no_argument, NULL, 0 },
index 1d2993c..dfb38f7 100644 (file)
@@ -242,7 +242,7 @@ static int cmd_qgroup_show(int argc, char **argv)
        optind = 1;
        while (1) {
                int c;
-               struct option long_options[] = {
+               static const struct option long_options[] = {
                        {"sort", 1, NULL, 'S'},
                        {0, 0, 0, 0}
                };
index 795332d..a07e61a 100644 (file)
@@ -1167,7 +1167,7 @@ int cmd_restore(int argc, char **argv)
        while (1) {
                int opt;
                int option_index = 0;
-               static struct option long_options[] = {
+               static const struct option long_options[] = {
                        { "path-regex", 1, NULL, 256},
                        { "dry-run", 0, NULL, 'D'},
                        { NULL, 0, NULL, 0}
index 97293fd..a31cb1b 100644 (file)
@@ -223,7 +223,7 @@ static int cmd_subvol_delete(int argc, char **argv)
        optind = 1;
        while (1) {
                int c;
-               struct option long_options[] = {
+               static const struct option long_options[] = {
                        {"commit-after", no_argument, NULL, 'c'},  /* commit mode 1 */
                        {"commit-each", no_argument, NULL, 'C'},  /* commit mode 2 */
                        {NULL, 0, NULL, 0}
@@ -403,7 +403,7 @@ static int cmd_subvol_list(int argc, char **argv)
        optind = 1;
        while(1) {
                int c;
-               struct option long_options[] = {
+               static const struct option long_options[] = {
                        {"sort", 1, NULL, 'S'},
                        {NULL, 0, NULL, 0}
                };
diff --git a/mkfs.c b/mkfs.c
index fc7bf84..60027ff 100644 (file)
--- a/mkfs.c
+++ b/mkfs.c
@@ -1264,7 +1264,7 @@ int main(int ac, char **av)
        while(1) {
                int c;
                int option_index = 0;
-               static struct option long_options[] = {
+               static const struct option long_options[] = {
                        { "alloc-start", 1, NULL, 'A'},
                        { "byte-count", 1, NULL, 'b' },
                        { "force", 0, NULL, 'f' },