From 5531dbe1b2026a88670c812d40f0efccb4b52c7f Mon Sep 17 00:00:00 2001 From: "S. Christoffer Eliesen" Date: Thu, 19 Nov 2015 13:05:59 +0100 Subject: cmd_workspace: Don't fill up config->workspace_outputs with duplicates. This also fixes a bug where issuing a new "workspace a output b" command for an already assigned workspace would not work (the old config would be found first and used instead). --- common/list.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'common/list.c') diff --git a/common/list.c b/common/list.c index ef1cfda8..310296d8 100644 --- a/common/list.c +++ b/common/list.c @@ -54,10 +54,10 @@ void list_sort(list_t *list, int compare(const void *left, const void *right)) { qsort(list->items, list->length, sizeof(void *), compare); } -int list_seq_find(list_t *list, int (*cmp)(const void *item, const void *data), const void *data) { +int list_seq_find(list_t *list, int compare(const void *item, const void *data), const void *data) { for (int i = 0; i < list->length; i++) { void *item = list->items[i]; - if ((cmp)(item, data) == 0) { + if (compare(item, data) == 0) { return i; } } -- cgit v1.2.3-54-g00ecf