From 7bbb3600fc6e73e1f27e9aab834f3451b65bf167 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Tue, 10 Apr 2018 16:21:46 +0200 Subject: fix option string This broke with commit db05ba61065f64b59d0014518be0786b5439e54c. --- htop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htop.c b/htop.c index 875cf6e8..e7940427 100644 --- a/htop.c +++ b/htop.c @@ -93,7 +93,7 @@ static CommandLineSettings parseArguments(int argc, char** argv) { int opt, opti=0; /* Parse arguments */ - while ((opt = getopt_long(argc, argv, "hvCst::d:u:p:i", long_opts, &opti))) { + while ((opt = getopt_long(argc, argv, "hvCs:td:u:p:i", long_opts, &opti))) { if (opt == EOF) break; switch (opt) { case 'h': -- cgit v1.2.3