expr: Fix silly bug in equality check
This commit is contained in:
parent
84f127bfec
commit
10a99d0b1e
1 changed files with 1 additions and 1 deletions
|
|
@ -861,7 +861,7 @@ apfl_expr_eq(struct apfl_expr a, struct apfl_expr b)
|
|||
return false;
|
||||
}
|
||||
|
||||
if (apfl_position_eq(a.position, b.position)) {
|
||||
if (!apfl_position_eq(a.position, b.position)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue