diff options
Diffstat (limited to 'libguile/conv-integer.i.c')
-rw-r--r-- | libguile/conv-integer.i.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/conv-integer.i.c b/libguile/conv-integer.i.c index 5591d9c17..7d6bd347e 100644 --- a/libguile/conv-integer.i.c +++ b/libguile/conv-integer.i.c @@ -64,15 +64,15 @@ SCM_TO_TYPE_PROTO (SCM val) } else { - scm_t_uintmax abs_n; + uintmax_t abs_n; TYPE n; size_t count; if (mpz_sizeinbase (SCM_I_BIG_MPZ (val), 2) - > CHAR_BIT*sizeof (scm_t_uintmax)) + > CHAR_BIT*sizeof (uintmax_t)) goto out_of_range; - mpz_export (&abs_n, &count, 1, sizeof (scm_t_uintmax), 0, 0, + mpz_export (&abs_n, &count, 1, sizeof (uintmax_t), 0, 0, SCM_I_BIG_MPZ (val)); if (mpz_sgn (SCM_I_BIG_MPZ (val)) >= 0) |