diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-04-19 03:25:22 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-04-19 03:25:22 +0000 |
commit | 221c64975f3fb78a72f44df1034be67f283aa64f (patch) | |
tree | 5a9e4b34d0970ec9bef413261ef9d730d915e849 | |
parent | baa702c81fd3754cac0468ac75b0fc463b8372f0 (diff) | |
download | guile-221c64975f3fb78a72f44df1034be67f283aa64f.tar.gz |
* procs.c (scm_make_subr_opt): Tell scm_must_realloc that we're
realloc:ing scm_subr_table ("what" instead of "who").
-rw-r--r-- | libguile/procs.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |