diff options
author | tege <tege@gmplib.org> | 2002-05-22 09:13:29 +0200 |
---|---|---|
committer | tege <tege@gmplib.org> | 2002-05-22 09:13:29 +0200 |
commit | 96a20d8730d4266f9c676f405d2ce07fdbf948e0 (patch) | |
tree | 278d82cb150557905c0f49dac0e07149b7378dc9 /mpz/inp_str.c | |
parent | 3236742eb6c2bbee6ebb8eefb0fddff9f0c84b29 (diff) | |
download | gmp-96a20d8730d4266f9c676f405d2ce07fdbf948e0.tar.gz |
(mpz_inp_str_nowhite): Nailify.
Diffstat (limited to 'mpz/inp_str.c')
-rw-r--r-- | mpz/inp_str.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mpz/inp_str.c b/mpz/inp_str.c index 9fc352765..9f673a751 100644 --- a/mpz/inp_str.c +++ b/mpz/inp_str.c @@ -156,7 +156,7 @@ mpz_inp_str_nowhite (mpz_ptr x, FILE *stream, int base, int c, size_t nread) { xsize = (((mp_size_t) (str_size / __mp_bases[base].chars_per_bit_exactly)) - / BITS_PER_MP_LIMB + 2); + / GMP_NUMB_BITS + 2); if (x->_mp_alloc < xsize) _mpz_realloc (x, xsize); |