diff options
author | Denys Vlasenko | 2017-08-08 14:59:35 +0200 |
---|---|---|
committer | Denys Vlasenko | 2017-08-08 14:59:35 +0200 |
commit | 00677b5e35dd97f415f0b0bef25b55865f55ab33 (patch) | |
tree | fa4fa2a08cecfa8edafb21d26e07e28b9ca10d74 /util-linux/fstrim.c | |
parent | ddd1ee44436c2ec7e0125ca128c9a148bea8a2c0 (diff) | |
download | busybox-00677b5e35dd97f415f0b0bef25b55865f55ab33.zip busybox-00677b5e35dd97f415f0b0bef25b55865f55ab33.tar.gz |
*: fix up use of "getopt_longopts" for longopts not in getopt applet
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/fstrim.c')
-rw-r--r-- | util-linux/fstrim.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/fstrim.c b/util-linux/fstrim.c index 49b3ceb..1fbf0c8 100644 --- a/util-linux/fstrim.c +++ b/util-linux/fstrim.c @@ -63,13 +63,13 @@ int fstrim_main(int argc UNUSED_PARAM, char **argv) }; #if ENABLE_LONG_OPTS - static const char getopt_longopts[] ALIGN1 = + static const char fstrim_longopts[] ALIGN1 = "offset\0" Required_argument "o" "length\0" Required_argument "l" "minimum\0" Required_argument "m" "verbose\0" No_argument "v" ; - applet_long_options = getopt_longopts; + applet_long_options = fstrim_longopts; #endif opt_complementary = "=1"; /* exactly one non-option arg: the mountpoint */ |