diff options
Diffstat (limited to 'libguile/conv-uinteger.i.c')
-rw-r--r-- | libguile/conv-uinteger.i.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/conv-uinteger.i.c b/libguile/conv-uinteger.i.c index f62dc41ad..2414b74b0 100644 --- a/libguile/conv-uinteger.i.c +++ b/libguile/conv-uinteger.i.c @@ -95,7 +95,7 @@ SCM_TO_TYPE_PROTO (SCM val) SCM SCM_FROM_TYPE_PROTO (TYPE val) { -#if SIZEOF_TYPE != 0 && SIZEOF_TYPE < SIZEOF_SCM_T_BITS +#if SIZEOF_TYPE != 0 && SIZEOF_TYPE < SIZEOF_UINTPTR_T return SCM_I_MAKINUM (val); #else if (SCM_POSFIXABLE (val)) |