diff options
Diffstat (limited to 'libguile/stacks.c')
-rw-r--r-- | libguile/stacks.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libguile/stacks.c b/libguile/stacks.c index 6be4ffca1..0e6598351 100644 --- a/libguile/stacks.c +++ b/libguile/stacks.c @@ -351,7 +351,10 @@ scm_make_stack (args) SCM stack, id; SCM obj, inner_cut, outer_cut; - SCM_ASSERT (SCM_NIMP (args) && SCM_CONSP (args), SCM_WNA, args, s_make_stack); + SCM_ASSERT (SCM_NIMP (args) && SCM_CONSP (args), + scm_makfrom0str (s_make_stack), + SCM_WNA, + NULL); obj = SCM_CAR (args); args = SCM_CDR (args); |