diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2015-11-19 13:05:59 +0100 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2015-11-19 13:05:59 +0100 |
| commit | 529ee2e65915347ca827cb8fd4ed8c28acde06a6 (patch) | |
| tree | 793b93d9df55478856a9d6dda7d99d3f8bd7d0e7 /common | |
| parent | fc61d6d47984229744d51b5936dfd9994720935c (diff) | |
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).
Diffstat (limited to 'common')
| -rw-r--r-- | common/list.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } } |
