1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 22:10:21 +02:00

* numbers.c (scm_adjbig): Tell scm_must_realloc "what" instead of "who".

This commit is contained in:
Mikael Djurfeldt 2000-04-19 03:26:13 +00:00
parent 221c64975f
commit 495ffc6ec5

View file

@ -1305,7 +1305,7 @@ scm_adjbig (SCM b, scm_sizet nlen)
= ((SCM_BIGDIG *)
scm_must_realloc ((char *) SCM_CHARS (b),
(long) (SCM_NUMDIGS (b) * sizeof (SCM_BIGDIG)),
(long) (nsiz * sizeof (SCM_BIGDIG)), s_adjbig));
(long) (nsiz * sizeof (SCM_BIGDIG)), s_bignum));
SCM_SETCHARS (b, digits);
SCM_SETNUMDIGS (b, nsiz, SCM_BIGSIGN (b));