Skip to content
This repository has been archived by the owner on Sep 8, 2020. It is now read-only.

Commit

Permalink
htop.c: remove unused "--io" / "-i" (#811)
Browse files Browse the repository at this point in the history
Introduced from 3383d8e (2.0.0) but never used.
  • Loading branch information
LionNatsu authored and hishamhm committed Aug 25, 2018
1 parent bae2705 commit 67e3689
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions htop.c
Expand Up @@ -87,13 +87,12 @@ static CommandLineSettings parseArguments(int argc, char** argv) {
{"no-colour",no_argument, 0, 'C'},
{"tree", no_argument, 0, 't'},
{"pid", required_argument, 0, 'p'},
{"io", no_argument, 0, 'i'},
{0,0,0,0}
};

int opt, opti=0;
/* Parse arguments */
while ((opt = getopt_long(argc, argv, "hvCs:td:u:p:i", long_opts, &opti))) {
while ((opt = getopt_long(argc, argv, "hvCs:td:u:p:", long_opts, &opti))) {
if (opt == EOF) break;
switch (opt) {
case 'h':
Expand Down

0 comments on commit 67e3689

Please sign in to comment.