diff options
author | Neil Jerram <neil@ossau.uklinux.net> | 2007-12-29 01:35:33 +0000 |
---|---|---|
committer | Neil Jerram <neil@ossau.uklinux.net> | 2007-12-29 01:35:33 +0000 |
commit | 5c004b6d6a6acca5327ca1e7cdf766c5edfa5548 (patch) | |
tree | 6e42914dae4c0b85e22000900cba40253011d191 /libguile/gc.c | |
parent | 70a4404429e198f37f52ddf73f6d9336277ed54c (diff) | |
download | guile-5c004b6d6a6acca5327ca1e7cdf766c5edfa5548.tar.gz |
* gc.c (mark_gc_async): Change "func_data" to "fn_data", to avoid
clash with AIX header file.
* hooks.c (scm_c_hook_add, scm_c_hook_remove): Same again.
* hooks.h (scm_t_c_hook_function, scm_c_hook_add,
scm_c_hook_remove): Same again.
Diffstat (limited to 'libguile/gc.c')
-rw-r--r-- | libguile/gc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/gc.c b/libguile/gc.c index 12a0b581d..21932d9f2 100644 --- a/libguile/gc.c +++ b/libguile/gc.c @@ -1017,7 +1017,7 @@ gc_async_thunk (void) */ static void * mark_gc_async (void * hook_data SCM_UNUSED, - void *func_data SCM_UNUSED, + void *fn_data SCM_UNUSED, void *data SCM_UNUSED) { /* If cell access debugging is enabled, the user may choose to perform |