diff options
author | Roland McGrath <roland@gnu.org> | 2002-05-08 06:52:18 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-05-08 06:52:18 +0000 |
commit | 885a4c2de5ba46ce3ff87482c07ef516f5639283 (patch) | |
tree | a5a93936b9f1b1de617f253b61e713355ef4a6cf | |
parent | c21abdc80af59adf73a7b0550a255de110c0a039 (diff) |
2002-05-03 Roland McGrath <roland@frob.com>
* tmpfs.c (startup_argp): Use OPTIONS array in initializer.
-rw-r--r-- | tmpfs/tmpfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmpfs/tmpfs.c b/tmpfs/tmpfs.c index f10b9803..3fa79a1d 100644 --- a/tmpfs/tmpfs.c +++ b/tmpfs/tmpfs.c @@ -254,7 +254,7 @@ diskfs_append_args (char **argz, unsigned *argz_len) /* Add our startup arguments to the standard diskfs set. */ static const struct argp_child startup_children[] = {{&diskfs_startup_argp}, {0}}; -static struct argp startup_argp = {0, parse_opt, "MAX-BYTES", "\ +static struct argp startup_argp = {options, parse_opt, "MAX-BYTES", "\ \v\ MAX-BYTES may be followed by k or K for kilobytes,\n\ m or M for megabytes, g or G for gigabytes.", |