mirror of
https://github.com/NickHu/sway
synced 2024-12-30 22:23:30 +01:00
Merge pull request #2609 from ianyfan/commands
commands: prevent running empty seat command
This commit is contained in:
commit
f7568e26e9
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ static struct cmd_handler seat_handlers[] = {
|
||||||
|
|
||||||
struct cmd_results *cmd_seat(int argc, char **argv) {
|
struct cmd_results *cmd_seat(int argc, char **argv) {
|
||||||
struct cmd_results *error = NULL;
|
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;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue