diff options
author | Andy Wingo <wingo@pobox.com> | 2009-12-08 21:50:40 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2009-12-08 23:13:20 +0100 |
commit | 96a44c1cab34e2cc3cf5a04a0c026f0863386137 (patch) | |
tree | 2f009997e69e10edd75ebf2a12c9c246780ed515 /libguile/struct.h | |
parent | 485d13670be5ae5594cf04d87fb64c239c2c9b80 (diff) | |
download | guile-96a44c1cab34e2cc3cf5a04a0c026f0863386137.tar.gz |
scm_i_alloc_struct does not take a "what" arg
* libguile/struct.h:
* libguile/struct.c (scm_i_alloc_struct): Change to not take a "what"
argument. Callers changed.
Diffstat (limited to 'libguile/struct.h')
-rw-r--r-- | libguile/struct.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/struct.h b/libguile/struct.h index 5454297eb..537ef90ed 100644 --- a/libguile/struct.h +++ b/libguile/struct.h @@ -170,7 +170,7 @@ SCM_API void scm_print_struct (SCM exp, SCM port, scm_print_state *); SCM_INTERNAL SCM scm_i_struct_equalp (SCM s1, SCM s2); SCM_INTERNAL unsigned long scm_struct_ihashq (SCM, unsigned long, void *); -SCM_INTERNAL SCM scm_i_alloc_struct (scm_t_bits *vtable_data, int n_words, const char *what); +SCM_INTERNAL SCM scm_i_alloc_struct (scm_t_bits *vtable_data, int n_words); SCM_INTERNAL void scm_i_struct_inherit_vtable_magic (SCM vtable, SCM obj); SCM_INTERNAL void scm_init_struct (void); |