diff options
author | Miles Bader <miles@gnu.org> | 1996-10-24 22:39:01 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-10-24 22:39:01 +0000 |
commit | f0b4d321e37fa2e58748116d9a54f22788bfb280 (patch) | |
tree | 47dc899f2a3359192d054fddf038adf348d769a2 /ext2fs | |
parent | 62d9341dad328a7153bc0435fe551a81f9857fe4 (diff) |
(startup_children, runtime_children):
New variables.
(startup_parents, runtime_parents):
Variables removed.
(startup_argp, runtime_argp):
Use new *_CHILDREN variables instead of corresponding *_PARENT ones.
Diffstat (limited to 'ext2fs')
-rw-r--r-- | ext2fs/ext2fs.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/ext2fs/ext2fs.c b/ext2fs/ext2fs.c index f3a23c68..5939de5d 100644 --- a/ext2fs/ext2fs.c +++ b/ext2fs/ext2fs.c @@ -122,12 +122,14 @@ diskfs_append_args (char **argz, unsigned *argz_len) } /* Add our startup arguments to the standard diskfs set. */ -static const struct argp *startup_parents[] = { &diskfs_store_startup_argp, 0}; -static struct argp startup_argp = {options, parse_opt, 0, 0, startup_parents}; +static const struct argp_child startup_children[] = + {{&diskfs_store_startup_argp}, {0}}; +static struct argp startup_argp = {options, parse_opt, 0, 0, startup_children}; /* Similarly at runtime. */ -static const struct argp *runtime_parents[] = {&diskfs_std_runtime_argp, 0}; -static struct argp runtime_argp = {options, parse_opt, 0, 0, runtime_parents}; +static const struct argp_child runtime_children[] = + {{&diskfs_std_runtime_argp}, {0}}; +static struct argp runtime_argp = {options, parse_opt, 0, 0, runtime_children}; struct argp *diskfs_runtime_argp = (struct argp *)&runtime_argp; |