diff options
author | Miles Bader <miles@gnu.org> | 1996-10-24 22:13:54 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-10-24 22:13:54 +0000 |
commit | 9328e445682f3de44d107a497e5edf93fae01816 (patch) | |
tree | a86d2d9b5dc9441755d521a5463452953569d672 /libdiskfs | |
parent | 05a286f34456b6f62887c4d8feab0b6118dfba6f (diff) |
(parents):
Variable removed.
(children):
New variable.
(diskfs_std_runtime_argp):
Use CHILDREN instead of PARENTS.
Diffstat (limited to 'libdiskfs')
-rw-r--r-- | libdiskfs/opts-std-runtime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libdiskfs/opts-std-runtime.c b/libdiskfs/opts-std-runtime.c index 2de309bc..47cebeb7 100644 --- a/libdiskfs/opts-std-runtime.c +++ b/libdiskfs/opts-std-runtime.c @@ -130,8 +130,8 @@ parse_opt (int opt, char *arg, struct argp_state *state) static const struct argp common_argp = { diskfs_common_options, parse_opt }; -static const struct argp *parents[] = { &common_argp, 0 }; +static const struct argp_child children[] = { {&common_argp}, {0} }; const struct argp diskfs_std_runtime_argp = { - std_runtime_options, parse_opt, 0, 0, parents + std_runtime_options, parse_opt, 0, 0, children }; |