diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-04-15 16:50:32 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-04-15 16:50:32 +0000 |
commit | 2de78d5431dc23d98498178770a3d77a3d913102 (patch) | |
tree | 4a15cb6836bffd579354e8c753bbf7713ae4ce87 | |
parent | 7b5a9ce49806d354d86298c50b6cacd16e49279a (diff) |
(fifo_trans_parse_args): Supply missing arg to argp_parse.
-rw-r--r-- | trans/new-fifo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trans/new-fifo.c b/trans/new-fifo.c index 44dd5afc..b1bc731d 100644 --- a/trans/new-fifo.c +++ b/trans/new-fifo.c @@ -165,7 +165,7 @@ fifo_trans_parse_args (struct fifo_trans *trans, int argc, char **argv, return 0; } struct argp argp = {options, parse_opt}; - return argp_parse (&argp, argc, argv, print_errs ? 0 : ARGP_SILENT, 0); + return argp_parse (&argp, argc, argv, print_errs ? 0 : ARGP_SILENT, 0, 0); } /* ---------------------------------------------------------------- */ |