summaryrefslogtreecommitdiffstats
path: root/sway/commands/seat/fallback.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/seat/fallback.c')
-rw-r--r--sway/commands/seat/fallback.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/commands/seat/fallback.c b/sway/commands/seat/fallback.c
index 8f1ab12c..0330c353 100644
--- a/sway/commands/seat/fallback.c
+++ b/sway/commands/seat/fallback.c
@@ -8,11 +8,11 @@ struct cmd_results *seat_cmd_fallback(int argc, char **argv) {
8 return error; 8 return error;
9 } 9 }
10 if (!config->handler_context.seat_config) { 10 if (!config->handler_context.seat_config) {
11 return cmd_results_new(CMD_FAILURE, "fallback", "No seat defined"); 11 return cmd_results_new(CMD_FAILURE, "No seat defined");
12 } 12 }
13 13
14 config->handler_context.seat_config->fallback = 14 config->handler_context.seat_config->fallback =
15 parse_boolean(argv[0], false); 15 parse_boolean(argv[0], false);
16 16
17 return cmd_results_new(CMD_SUCCESS, NULL, NULL); 17 return cmd_results_new(CMD_SUCCESS, NULL);
18} 18}