sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 71f710cf0f1c4039f0623d5e149c077c0aa25dc5
parent cdb6a9e94855e75fa20e14b766632dada3410292
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sun, 19 Jun 2016 10:01:15 -0400

Minor fix to warning messages

Diffstat:
Msway/commands.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sway/commands.c b/sway/commands.c @@ -251,7 +251,7 @@ static struct cmd_results *cmd_bindsym(int argc, char **argv) { } else { free_sway_binding(binding); return cmd_results_new(CMD_FAILURE, "bindsym", - "Invalid bindsym command" + "Invalid bindsym command " "(expected more than 2 arguments, got %d)", argc); } } @@ -317,7 +317,7 @@ static struct cmd_results *cmd_bindcode(int argc, char **argv) { } else { free_sway_binding(binding); return cmd_results_new(CMD_FAILURE, "bindcode", - "Invalid bindcode command" + "Invalid bindcode command " "(expected more than 2 arguments, got %d)", argc); } }