1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-18 01:30:27 +02:00

A couple of typing problems (at leat partially) resolved.

This commit is contained in:
Dirk Herrmann 2000-03-20 18:14:07 +00:00
parent f1083dd7d7
commit f2961ccd8f
4 changed files with 26 additions and 5 deletions

View file

@ -4422,7 +4422,11 @@ scm_long_long2num (long_long sl)
return scm_makdbl ((double) sl, 0.0);
#endif
}
return SCM_MAKINUM (sl);
else
{
/* we know that sl fits into an inum */
return SCM_MAKINUM ((scm_bits_t) sl);
}
}
#endif