mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-09 13:30:26 +02:00
(NUM2INTEGRAL): Test BIGMPZ_FITSP with "!= 0" to
avoid warning from gcc 3.4. Reported by Hyperdivision.
This commit is contained in:
parent
e45fb18618
commit
924532c8fd
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ NUM2INTEGRAL (SCM num, unsigned long int pos, const char *s_caller)
|
|||
else
|
||||
{
|
||||
/* make sure the result will fit */
|
||||
if (BIGMPZ_FITSP)
|
||||
if (BIGMPZ_FITSP != 0)
|
||||
{
|
||||
int fits_p = BIGMPZ_FITSP (SCM_I_BIG_MPZ (num));
|
||||
scm_remember_upto_here_1 (num);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue