X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/b817bfc642225b8c3c0b6a7e42d1fb949b61a606..e40955b56456a6191ebff48b00c667a0674b3bdb:/mpmont.c 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$% --- */