From 32cc02846b8e82a26c3503ef915d84aafefe19b4 Mon Sep 17 00:00:00 2001 From: simon Date: Wed, 11 Dec 2024 11:12:45 +0100 Subject: [PATCH] bugfix in llistGet function --- src/llist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/llist.c b/src/llist.c index 228d813..cbd7a8e 100644 --- a/src/llist.c +++ b/src/llist.c @@ -47,7 +47,7 @@ llist *llistAppend(llist *head, void *data) { llist *llistGet(llist *head, void *key) { llist *c = head; while (c != NULL) { - if (key == c) { + if (head->cmpFn(c->data, key)) { return c; } c = c->next;