X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/578a86d91941a0f722b87973d88e84ec2cf9a608..a69a3efddbe1261f55e90d4ff477053ab80663a5:/mpmont.c?ds=sidebyside diff --git a/mpmont.c b/mpmont.c index 39f51ed..24fc9a3 100644 --- a/mpmont.c +++ b/mpmont.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: mpmont.c,v 1.19 2004/04/08 01:36:15 mdw Exp $ + * $Id$ * * Montgomery reduction * @@ -76,7 +76,7 @@ void mpmont_create(mpmont *mm, mp *m) /* --- Take a copy of the modulus --- */ - assert(MP_ISPOS(m) && MP_ISODD(m)); + assert(MP_POSP(m) && MP_ODDP(m)); mm->m = MP_COPY(m); /* --- Determine %$R^2$% --- */