summaryrefslogtreecommitdiffstats
path: root/sway/commands
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands')
-rw-r--r--sway/commands/swap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/commands/swap.c b/sway/commands/swap.c
index 697de226..a7f9691b 100644
--- a/sway/commands/swap.c
+++ b/sway/commands/swap.c
@@ -202,8 +202,8 @@ static bool test_id(struct sway_container *container, void *data) {
202 202
203static bool test_mark(struct sway_container *container, void *mark) { 203static bool test_mark(struct sway_container *container, void *mark) {
204 if (container->marks->length) { 204 if (container->marks->length) {
205 return !list_seq_find(container->marks, 205 return list_seq_find(container->marks,
206 (int (*)(const void *, const void *))strcmp, mark); 206 (int (*)(const void *, const void *))strcmp, mark) != -1;
207 } 207 }
208 return false; 208 return false;
209} 209}