value: Fix equality check for list
m(
This commit is contained in:
parent
3aabadbf6d
commit
136a6da06b
1 changed files with 1 additions and 1 deletions
|
|
@ -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++) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue