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