sway

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

commit 6cd92b193cc3c8e011d2b29c536737d6a2a8c727
parent 1376d3610455960cbeb098159d39963c55461d92
Author: Ian Fan <ianfan0@gmail.com>
Date:   Sat,  8 Sep 2018 19:51:38 +0100

commands: prevent running empty seat command

Diffstat:
Msway/commands/seat.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sway/commands/seat.c b/sway/commands/seat.c @@ -14,7 +14,7 @@ static struct cmd_handler seat_handlers[] = { struct cmd_results *cmd_seat(int argc, char **argv) { struct cmd_results *error = NULL; - if ((error = checkarg(argc, "seat", EXPECTED_AT_LEAST, 1))) { + if ((error = checkarg(argc, "seat", EXPECTED_AT_LEAST, 2))) { return error; }