diff options
author | Miles Bader <miles@gnu.org> | 1996-10-24 21:38:50 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-10-24 21:38:50 +0000 |
commit | d078fe645188b502661059835230d2bd9cbac388 (patch) | |
tree | 057a0728b102b79d8f5b1d732b37cb0d06dccd85 | |
parent | 995b367c1a044c104bd0c1ffa553f86c78c1036f (diff) |
(main):
Use elements of type `struct argp_child' for KIDS.
-rw-r--r-- | storeio/storeio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storeio/storeio.c b/storeio/storeio.c index 67a6ecb7..b22cc436 100644 --- a/storeio/storeio.c +++ b/storeio/storeio.c @@ -111,7 +111,7 @@ void main (int argc, char *argv[]) } return 0; } - const struct argp *kids[] = { &store_argp, 0 }; + const struct argp_child kids[] = { {&store_argp}, {0} }; const struct argp argp = { options, parse_opt, args_doc, doc, kids }; struct store_argp_params store_params = { default_type: "device" }; |