diff options
-rw-r--r-- | mpz/cong_2exp.c | 2 | ||||
-rw-r--r-- | mpz/divis.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mpz/cong_2exp.c b/mpz/cong_2exp.c index e4a637557..4b3c10505 100644 --- a/mpz/cong_2exp.c +++ b/mpz/cong_2exp.c @@ -29,7 +29,7 @@ mpz_congruent_2exp_p (mpz_srcptr a, mpz_srcptr c, unsigned long d) unsigned long i, dlimbs, dbits; mp_ptr ap, cp; mp_limb_t dmask, alimb, climb, sum; - int asize_signed, csize_signed, asize, csize; + mp_size_t asize_signed, csize_signed, asize, csize; if (ABSIZ(a) < ABSIZ(c)) MPZ_SRCPTR_SWAP (a, c); diff --git a/mpz/divis.c b/mpz/divis.c index 03333aeeb..e86618d1b 100644 --- a/mpz/divis.c +++ b/mpz/divis.c @@ -27,7 +27,7 @@ MA 02111-1307, USA. int mpz_divisible_p (mpz_srcptr a, mpz_srcptr d) { - int dsize; + mp_size_t dsize; dsize = SIZ(d); if (dsize == 0) |