From 221c64975f3fb78a72f44df1034be67f283aa64f Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Wed, 19 Apr 2000 03:25:22 +0000 Subject: [PATCH] * procs.c (scm_make_subr_opt): Tell scm_must_realloc that we're realloc:ing scm_subr_table ("what" instead of "who"). --- libguile/procs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/procs.c b/libguile/procs.c index e09228fde..4d2b0955a 100644 --- a/libguile/procs.c +++ b/libguile/procs.c @@ -80,7 +80,7 @@ scm_make_subr_opt (const char *name, int type, SCM (*fcn) (), int set) = scm_must_realloc ((char *) scm_subr_table, sizeof (scm_subr_entry) * scm_subr_table_room, sizeof (scm_subr_entry) * new_size, - "scm_make_subr_opt"); + "scm_subr_table"); scm_subr_table = new_table; scm_subr_table_room = new_size; }