bugfix in llistGet function

sql
simon 2024-12-11 11:12:45 +01:00
parent ca5065d569
commit 32cc02846b
1 changed files with 1 additions and 1 deletions

View File

@ -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;