From: ceriel Date: Thu, 21 May 1987 09:28:33 +0000 (+0000) Subject: Fix in wrong assertion X-Git-Tag: release-5-5~4107 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=dd2cf6bbaae865aabf8b19ce70f398fa09d00bcb;p=ack.git Fix in wrong assertion --- diff --git a/mach/proto/as/comm6.c b/mach/proto/as/comm6.c index def1eb5b8..bb1fe4499 100644 --- a/mach/proto/as/comm6.c +++ b/mach/proto/as/comm6.c @@ -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 }