diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2020-03-11 09:35:12 +0100 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2020-03-11 09:35:12 +0100 |
| commit | 72eecb24974ee57b4f340cff38e485b153801b07 (patch) | |
| tree | 624f3a8c266e9109a4faa1a675cae3ea0bd19e5a | |
| parent | e219ec10456a7d810544c9edf33ca45fb9a62e8b (diff) | |
commands: Adjust style in cursors command
Remove some unnecessary brackets in an error condition check identified
during review of the shortcuts inhibitor command code (#5021).
Signed-off-by: Michael Weiser <michael.weiser@gmx.de>
| -rw-r--r-- | sway/commands/seat/cursor.c | 2 |
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) { struct sway_seat *seat = NULL; wl_list_for_each(seat, &server.input->seats, link) { error = handle_command(seat->cursor, argc, argv); - if ((error && error->status != CMD_SUCCESS)) { + if (error && error->status != CMD_SUCCESS) { break; } } |
