summaryrefslogtreecommitdiff
path: root/src/join.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1992-12-02 18:31:56 +0000
committerJim Meyering <jim@meyering.net>1992-12-02 18:31:56 +0000
commiteb3a2516dba78740843793f755af412f24ac5330 (patch)
treef6d6f8c876d373ff98a21e69c08c4a2a194fc360 /src/join.c
parentf9a9be97e1792fb13bcd72b1bf82414bdb615788 (diff)
downloadcoreutils-eb3a2516dba78740843793f755af412f24ac5330.tar.xz
Convert static declarations of struct option to use new macros from
getopt.h: no_argument, required_argument, and optional_argument.
Diffstat (limited to 'src/join.c')
-rw-r--r--src/join.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/join.c b/src/join.c
index 6e593b628..2399ad4ac 100644
--- a/src/join.c
+++ b/src/join.c
@@ -561,9 +561,9 @@ add_field_list (str)
a character that is a short option. */
static struct option const longopts[] =
{
- {"j", 1, NULL, 'j'},
- {"j1", 1, NULL, '1'},
- {"j2", 1, NULL, '2'},
+ {"j", required_argument, NULL, 'j'},
+ {"j1", required_argument, NULL, '1'},
+ {"j2", required_argument, NULL, '2'},
{NULL, 0, NULL, 0}
};