summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2018-04-10 16:21:46 +0200
committerHisham Muhammad <hisham@gobolinux.org>2018-08-24 16:00:52 -0300
commit7bbb3600fc6e73e1f27e9aab834f3451b65bf167 (patch)
treee4a4360472478dc3eb44ee9850147794df91f7d3
parent4092c90bc317cccf8f8d61e3fc5dc69a8aa1f2c4 (diff)
fix option string
This broke with commit db05ba61065f64b59d0014518be0786b5439e54c.
-rw-r--r--htop.c2
1 files changed, 1 insertions, 1 deletions
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':

© 2014-2024 Faster IT GmbH | imprint | privacy policy