fix option string

This broke with commit db05ba6106.
This commit is contained in:
Christian Hesse 2018-04-10 16:21:46 +02:00 committed by Hisham Muhammad
parent e1e3791363
commit 08a9b051c5
1 changed files with 1 additions and 1 deletions

2
htop.c
View File

@ -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':