summaryrefslogtreecommitdiffstats
path: root/htop.c
diff options
context:
space:
mode:
authorChristian Göttsche <cgzones@googlemail.com>2020-09-17 22:37:03 +0200
committercgzones <cgzones@googlemail.com>2020-09-18 12:27:45 +0200
commitf6b0efded5a65a15a6d5154dbe77e9727925f51e (patch)
treea4517c38daef1a6936e75a4916bf1f183dab0f66 /htop.c
parentf3b4e248a360624ba429ec6c69e3ccfc9097ef2c (diff)
Convert short version option to capital V
v is generally used for enabling verbose mode
Diffstat (limited to 'htop.c')
-rw-r--r--htop.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/htop.c b/htop.c
index 070f581f..916a10dd 100644
--- a/htop.c
+++ b/htop.c
@@ -46,7 +46,7 @@ static void printHelpFlag() {
"-u --user[=USERNAME] Show only processes for a given user (or $USER)\n"
"-U --no-unicode Do not use unicode but plain ASCII\n"
"-p --pid=PID,[,PID,PID...] Show only the given PIDs\n"
- "-v --version Print version info\n"
+ "-V --version Print version info\n"
"\n"
"Long options may be passed with a single dash.\n\n"
"Press F1 inside htop for online help.\n"
@@ -84,7 +84,7 @@ static CommandLineSettings parseArguments(int argc, char** argv) {
static struct option long_opts[] =
{
{"help", no_argument, 0, 'h'},
- {"version", no_argument, 0, 'v'},
+ {"version", no_argument, 0, 'V'},
{"delay", required_argument, 0, 'd'},
{"sort-key", required_argument, 0, 's'},
{"user", optional_argument, 0, 'u'},
@@ -99,13 +99,13 @@ static CommandLineSettings parseArguments(int argc, char** argv) {
int opt, opti=0;
/* Parse arguments */
- while ((opt = getopt_long(argc, argv, "hvMCs:td:u::Up:", long_opts, &opti))) {
+ while ((opt = getopt_long(argc, argv, "hVMCs:td:u::Up:", long_opts, &opti))) {
if (opt == EOF) break;
switch (opt) {
case 'h':
printHelpFlag();
break;
- case 'v':
+ case 'V':
printVersionFlag();
break;
case 's':

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