aboutsummaryrefslogtreecommitdiff
path: root/swaymsg
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-10-10 10:57:45 +0200
committerGitHub <noreply@github.com>2018-10-10 10:57:45 +0200
commit87bc707e9b21a6b06c8aec2c0ff1e823abf9bda4 (patch)
treec07061b6dbd27ce14fa3c8ba2f8d8ca5dee2fdf0 /swaymsg
parent2bd561d2b71830b1be5546112faf035383c8615e (diff)
parentfa8959532ba3d3b0846dc3fb9f55ccbf4e6655ec (diff)
Merge pull request #2812 from RyanDwyer/fix-version-messages
Fix program name in version strings
Diffstat (limited to 'swaymsg')
-rw-r--r--swaymsg/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/swaymsg/main.c b/swaymsg/main.c
index 3767daf3..4688737c 100644
--- a/swaymsg/main.c
+++ b/swaymsg/main.c
@@ -345,7 +345,7 @@ int main(int argc, char **argv) {
cmdtype = strdup(optarg);
break;
case 'v':
- fprintf(stdout, "sway version " SWAY_VERSION "\n");
+ fprintf(stdout, "swaymsg version " SWAY_VERSION "\n");
exit(EXIT_SUCCESS);
break;
default: