mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-02 04:40:29 +02:00
* numbers.c (scm_logtest): Fixed argument bug in the call to
mpz_and, which showed up when compiling with SCM_DEBUG defined.
This commit is contained in:
parent
f96460ce84
commit
aec16f9972
2 changed files with 6 additions and 1 deletions
|
@ -1073,7 +1073,7 @@ SCM_DEFINE (scm_logtest, "logtest", 2, 0, 0,
|
|||
SCM result;
|
||||
mpz_t result_z;
|
||||
mpz_init (result_z);
|
||||
mpz_and (SCM_I_BIG_MPZ (result_z),
|
||||
mpz_and (result_z,
|
||||
SCM_I_BIG_MPZ (j),
|
||||
SCM_I_BIG_MPZ (k));
|
||||
scm_remember_upto_here_2 (j, k);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue