Skip to content

Commit

Permalink
FIXED: PL_get_size_ex() on 64 bit systems using LibBF based bignums.
Browse files Browse the repository at this point in the history
  • Loading branch information
JanWielemaker committed Oct 23, 2023
1 parent c9452ca commit b4e4a19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pl-error.c
Original file line number Diff line number Diff line change
Expand Up @@ -1117,7 +1117,7 @@ PL_get_size_ex(DECL_LD term_t t, size_t *i)
{ return PL_error(NULL, 0, NULL, ERR_DOMAIN,
ATOM_not_less_than_zero, t);
}
#if SIZEOF_VOIDP == 8 && defined(O_GMP)
#if SIZEOF_VOIDP == 8 && defined(O_BIGNUM)
case V_MPZ:
{ uint64_t v;

Expand Down

0 comments on commit b4e4a19

Please sign in to comment.