From 97b248fa184f0fd74a23459860d49ac92a0c86ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= <nisse@lysator.liu.se> Date: Fri, 18 Apr 1997 22:05:25 +0200 Subject: [PATCH] Fixed mpz_from_digits(). Rev: src/modules/Gmp/mpz_glue.c:1.13 --- src/modules/Gmp/mpz_glue.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/Gmp/mpz_glue.c b/src/modules/Gmp/mpz_glue.c index 8c0019e08c..7cff2a701a 100644 --- a/src/modules/Gmp/mpz_glue.c +++ b/src/modules/Gmp/mpz_glue.c @@ -4,7 +4,7 @@ ||| See the files COPYING and DISCLAIMER for more information. \*/ #include "global.h" -RCSID("$Id: mpz_glue.c,v 1.12 1997/04/18 18:20:54 nisse Exp $"); +RCSID("$Id: mpz_glue.c,v 1.13 1997/04/18 20:05:25 nisse Exp $"); #include "gmp_machine.h" #include "types.h" @@ -45,7 +45,7 @@ static void get_mpz_from_digits(MP_INT *tmp, } else if(base == 256) { - unsigned i; + int i; mpz_t digit; mpz_init(digit); -- GitLab