diff options
author | Andy Wingo <wingo@pobox.com> | 2020-03-13 17:28:43 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2020-03-13 17:28:43 +0100 |
commit | 7839dc444b94568579c510737bc358fa6f4470ee (patch) | |
tree | 82ca5f63aeca7c91e211d51f19148c6f07c013ef /libguile | |
parent | be64a3e6a80ff30ce4c411763245a4c42099fad0 (diff) |
Revert "Fix build on platforms where the stack grows upwards."
This patch was only meant to apply to the 3.0 branch.
Diffstat (limited to 'libguile')
-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) |