1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 05:50:26 +02:00

Correct cut and paste error: use SCM_POSFIXABLE for unsigned types.

This commit is contained in:
Marius Vollmer 2001-10-06 20:49:10 +00:00
parent c0060c9589
commit ce191a26e6

View file

@ -109,7 +109,7 @@ INTEGRAL2NUM (ITYPE n)
#endif #endif
#else #else
#ifdef NEED_CHECK #ifdef NEED_CHECK
if (SCM_FIXABLE (n)) if (SCM_POSFIXABLE (n))
#endif #endif
#endif #endif
return SCM_MAKINUM ((scm_t_signed_bits) n); return SCM_MAKINUM ((scm_t_signed_bits) n);