diff options
author | Tony Crisci <tony@dubstepdish.com> | 2018-03-31 21:05:58 -0400 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2018-03-31 21:05:58 -0400 |
commit | b5d49cc4e86b5da5a3479c2d2a763be50184f75d (patch) | |
tree | a5cb1f98b80454e79bd521c4421b9cbe89ce8862 /sway/commands | |
parent | 81556f4b2aad49c21058d9cc9695195a12f0239b (diff) |
remove default from kill switch
Diffstat (limited to 'sway/commands')
-rw-r--r-- | sway/commands/kill.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sway/commands/kill.c b/sway/commands/kill.c index e6036cb3..46d6e98e 100644 --- a/sway/commands/kill.c +++ b/sway/commands/kill.c @@ -14,6 +14,7 @@ struct cmd_results *cmd_kill(int argc, char **argv) { case C_ROOT: case C_OUTPUT: case C_WORKSPACE: + case C_TYPES: return cmd_results_new(CMD_INVALID, NULL, "Can only kill views and containers with this command"); break; @@ -24,8 +25,6 @@ struct cmd_results *cmd_kill(int argc, char **argv) { case C_VIEW: view_close(con->sway_view); break; - default: - break; } return cmd_results_new(CMD_SUCCESS, NULL, NULL); |