From a4c5b292123d9bb72da32938967bf453086c9c48 Mon Sep 17 00:00:00 2001 From: Bastien Dejean Date: Sun, 30 Jul 2017 14:23:29 +0200 Subject: [PATCH] Fix monitor's -o long variant name --- src/messages.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/messages.c b/src/messages.c index 43fc94d..5c2af44 100644 --- a/src/messages.c +++ b/src/messages.c @@ -859,7 +859,7 @@ void cmd_monitor(char **args, int num, FILE *rsp) } remove_monitor(trg.monitor); return; - } else if (streq("-o", *args) || streq("--order-desktops", *args)) { + } else if (streq("-o", *args) || streq("--reorder-desktops", *args)) { num--, args++; if (num < 1) { fail(rsp, "monitor %s: Not enough arguments.\n", *(args - 1));