value: Fix equality check for list

m(
This commit is contained in:
Laria 2022-10-04 22:33:00 +02:00
parent 3aabadbf6d
commit 136a6da06b

View file

@ -290,7 +290,7 @@ list_eq(struct list_header *a, struct list_header *b)
}
if (a->len != b->len) {
return true;
return false;
}
for (size_t i = 0; i < a->len; i++) {