diff options
author | John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> | 2020-02-04 13:11:53 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-02-12 10:35:39 +0100 |
commit | 51a52cd6c635abee6b742a7d9241eca513a41f96 (patch) | |
tree | 9c0c316ac9e733596cdea962fe47b0f958a5bea3 | |
parent | 885484c97bb17bed42d3fcaeda60d1e0f2c52dab (diff) |
Fix build on platforms where the stack grows upwards.
* libguile/continuations.c (scm_dynthrow): Fix missing mra
parameter to grow_stack for SCM_STACK_GROWS_UP.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | libguile/continuations.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/continuations.c b/libguile/continuations.c index 80914bc04..c02598bf0 100644 --- a/libguile/continuations.c +++ b/libguile/continuations.c @@ -302,7 +302,7 @@ scm_dynthrow (SCM cont) #if SCM_STACK_GROWS_UP if (dst + continuation->num_stack_items >= &stack_top_element) - grow_stack (cont); + grow_stack (cont, mra); #else dst -= continuation->num_stack_items; if (dst <= &stack_top_element) |