From: J William Piggott Date: Tue, 20 Jun 2017 00:04:21 +0000 (-0400) Subject: hwclock: remove unused optstring characters X-Git-Tag: v2.31-rc1~271^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=32adac4c9e07ea10c31bf371c7eacfc87902dc4f;p=thirdparty%2Futil-linux.git hwclock: remove unused optstring characters getopt_long() opstring contained obsolete entries. Signed-off-by: J William Piggott --- diff --git a/sys-utils/hwclock.c b/sys-utils/hwclock.c index 5433cd000b..f6a87c7f1c 100644 --- a/sys-utils/hwclock.c +++ b/sys-utils/hwclock.c @@ -1355,7 +1355,7 @@ int main(int argc, char **argv) atexit(close_stdout); while ((c = getopt_long(argc, argv, - "?hvVDalrsuwAJSFf:", longopts, NULL)) != -1) { + "hvVDalrsuwf:", longopts, NULL)) != -1) { err_exclusive_options(c, longopts, excl, excl_st);