diff options
author | Jim Meyering <meyering@redhat.com> | 2008-06-08 12:31:06 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-06-14 23:55:27 +0200 |
commit | 30497ff68740af251146c280d13dac24cdb1c5b6 (patch) | |
tree | 0e408213498df9ef0388cffcdb16f1eba98055c3 /libidu/scanners.c | |
parent | 0870ec5a3bcf0d4bd6c73379d17eab4105944501 (diff) | |
download | idutils-30497ff68740af251146c280d13dac24cdb1c5b6.tar.gz idutils-30497ff68740af251146c280d13dac24cdb1c5b6.tar.bz2 idutils-30497ff68740af251146c280d13dac24cdb1c5b6.zip |
sync maint.mk from coreutils, and adjust to conform
* libidu/scanners.c (long_options_c, long_options_asm): Add "const".
(long_options_text, long_options_perl): Likewise.
* src/fnid.c (long_options): Likewise.
* src/lid.c (long_options): Likewise.
* src/xtokid.c (long_options): Likewise.
Diffstat (limited to 'libidu/scanners.c')
-rw-r--r-- | libidu/scanners.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libidu/scanners.c b/libidu/scanners.c index 92130dc..4a32207 100644 --- a/libidu/scanners.c +++ b/libidu/scanners.c @@ -423,7 +423,7 @@ struct args_c static struct args_c args_c = { 0, ctype_c }; -static struct option const long_options_c[] = +static const struct option const long_options_c[] = { { "keep", required_argument, 0, 'k' }, { "ignore", required_argument, 0, 'i' }, @@ -832,7 +832,7 @@ struct args_asm static struct args_asm args_asm = { 1, 0, ctype_asm }; -static struct option const long_options_asm[] = +static const struct option const long_options_asm[] = { { "comment", required_argument, 0, 'c' }, { "keep", required_argument, 0, 'k' }, @@ -1106,7 +1106,7 @@ struct args_text static struct args_text args_text = { ctype_text }; -static struct option const long_options_text[] = +static const struct option const long_options_text[] = { { "include", required_argument, 0, 'i' }, { "exclude", required_argument, 0, 'x' }, @@ -1310,7 +1310,7 @@ struct args_perl static struct args_perl args_perl = { 1, ctype_perl }; -static struct option const long_options_perl[] = +static const struct option const long_options_perl[] = { { "include", required_argument, 0, 'i' }, { "exclude", required_argument, 0, 'x' }, |