aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/commands/seat/cursor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/seat/cursor.c b/sway/commands/seat/cursor.c
index 085e6a33..c09020d3 100644
--- a/sway/commands/seat/cursor.c
+++ b/sway/commands/seat/cursor.c
@@ -71,7 +71,7 @@ struct cmd_results *seat_cmd_cursor(int argc, char **argv) {
71 struct sway_seat *seat = NULL; 71 struct sway_seat *seat = NULL;
72 wl_list_for_each(seat, &server.input->seats, link) { 72 wl_list_for_each(seat, &server.input->seats, link) {
73 error = handle_command(seat->cursor, argc, argv); 73 error = handle_command(seat->cursor, argc, argv);
74 if ((error && error->status != CMD_SUCCESS)) { 74 if (error && error->status != CMD_SUCCESS) {
75 break; 75 break;
76 } 76 }
77 } 77 }