From: mdw Date: Tue, 13 Sep 2005 15:23:59 +0000 (+0000) Subject: Stupid mistake fix. X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/commitdiff_plain/15f2115520c175d46988d9a63602c3a2d84a2826 Stupid mistake fix. --- diff --git a/mp-arith.c b/mp-arith.c index 941b8df..3af1447 100644 --- a/mp-arith.c +++ b/mp-arith.c @@ -360,7 +360,7 @@ mp *mp_bit##n##2c(mp *d, mp *a, mp *b) \ p_bn \ } else { /* Both negative */ \ mp *t = mp_not2c(MP_NEW, a); \ - mp *d = mp_not2c(d, b); \ + d = mp_not2c(d, b); \ d = mp_bit##abn(d, t, d); \ MP_DROP(t); \ p_abn \