mirror of https://github.com/xzeldon/htop.git
htop.c: remove unused "--io" / "-i" (#811)
Introduced from 3383d8e556
(2.0.0) but never used.
This commit is contained in:
parent
bae27054e6
commit
dc7d035238
3
htop.c
3
htop.c
|
@ -87,13 +87,12 @@ static CommandLineSettings parseArguments(int argc, char** argv) {
|
||||||
{"no-colour",no_argument, 0, 'C'},
|
{"no-colour",no_argument, 0, 'C'},
|
||||||
{"tree", no_argument, 0, 't'},
|
{"tree", no_argument, 0, 't'},
|
||||||
{"pid", required_argument, 0, 'p'},
|
{"pid", required_argument, 0, 'p'},
|
||||||
{"io", no_argument, 0, 'i'},
|
|
||||||
{0,0,0,0}
|
{0,0,0,0}
|
||||||
};
|
};
|
||||||
|
|
||||||
int opt, opti=0;
|
int opt, opti=0;
|
||||||
/* Parse arguments */
|
/* 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;
|
if (opt == EOF) break;
|
||||||
switch (opt) {
|
switch (opt) {
|
||||||
case 'h':
|
case 'h':
|
||||||
|
|
Loading…
Reference in New Issue