diff options
-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 c02598bf0..80914bc04 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, mra); + grow_stack (cont); #else dst -= continuation->num_stack_items; if (dst <= &stack_top_element) |