From: ceriel Date: Tue, 23 Jan 1990 11:00:47 +0000 (+0000) Subject: fixed; did not compile X-Git-Tag: release-5-5~1876 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=ccfd50c6b7a8857ff6df1ebf7ccea3c3bc4ee38b;p=ack.git fixed; did not compile --- diff --git a/lang/cem/libcc/gen/ext_comp.c b/lang/cem/libcc/gen/ext_comp.c index ca37b8549..4496d9762 100644 --- a/lang/cem/libcc/gen/ext_comp.c +++ b/lang/cem/libcc/gen/ext_comp.c @@ -191,7 +191,7 @@ cmp_ext(e1, e2) add_ext(e1, e2, &tmp); e2->sign = ! e2->sign; if (tmp.m1 == 0 && tmp.m2 == 0) return 0; - if (tmp->sign) return -1; + if (tmp.sign) return -1; return 1; }