Fix in wrong assertion
This commit is contained in:
parent
1d213e28c4
commit
dd2cf6bbaa
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ register item_t *ip;
|
|||
if (store(ip, (valu_t) DOTVAL) == 0)
|
||||
return;
|
||||
#ifdef THREE_PASS
|
||||
assert(pass != PASS_2 || oldval - ip->i_valu == DOTGAIN);
|
||||
assert(pass != PASS_2 || (oldval -= ip->i_valu) == DOTGAIN);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue