fixed; did not compile

This commit is contained in:
ceriel 1990-01-23 11:00:47 +00:00
parent 7cb9955f82
commit ccfd50c6b7

View file

@ -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;
}