summaryrefslogtreecommitdiffstats
path: root/tmux.c
diff options
context:
space:
mode:
authornicm <nicm>2023-04-17 18:00:19 +0000
committernicm <nicm>2023-04-17 18:00:19 +0000
commit9f605178c375b3722408c241a93f6d18090eead1 (patch)
tree21a6330850e186c5a3120512a9eab76cdb4d73c6 /tmux.c
parentbcafe51378b1b16a9a9429d9ad074d5a5d700144 (diff)
It seems silly to use progname for version, just always say tmux.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmux.c b/tmux.c
index 0d752221..39856136 100644
--- a/tmux.c
+++ b/tmux.c
@@ -401,7 +401,7 @@ main(int argc, char **argv)
cfg_quiet = 0;
break;
case 'V':
- printf("%s %s\n", getprogname(), getversion());
+ printf("tmux %s\n", getversion());
exit(0);
case 'l':
flags |= CLIENT_LOGIN;