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:
parent
f1083dd7d7
commit
f2961ccd8f
4 changed files with 26 additions and 5 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue