From 17386a3a5dd3b29e427a3b2e6a7b60b2d086efe3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= <nisse@lysator.liu.se> Date: Fri, 18 Apr 1997 20:20:54 +0200 Subject: [PATCH] Fixed mpz_from_digits(). Rev: src/modules/Gmp/mpz_glue.c:1.12 --- src/modules/Gmp/mpz_glue.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/modules/Gmp/mpz_glue.c b/src/modules/Gmp/mpz_glue.c index f7e9526511..8c0019e08c 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.11 1997/04/16 03:10:27 hubbe Exp $"); +RCSID("$Id: mpz_glue.c,v 1.12 1997/04/18 18:20:54 nisse Exp $"); #include "gmp_machine.h" #include "types.h" @@ -45,8 +45,7 @@ static void get_mpz_from_digits(MP_INT *tmp, } else if(base == 256) { - - INT8 i; + unsigned i; mpz_t digit; mpz_init(digit); -- GitLab