diff options
author | Marius Vollmer <mvo@zagadka.de> | 2002-10-16 16:25:45 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2002-10-16 16:25:45 +0000 |
commit | 7751157e03b6abfee15901880486e0deabaa62d1 (patch) | |
tree | 1c2e61124aacd6951b39efb9080711d4ace20a68 | |
parent | 8ef70d1e3ceb6e6303b28141e000eb8603b38d22 (diff) | |
download | guile-7751157e03b6abfee15901880486e0deabaa62d1.tar.gz |
It's scm_t_cond, not scm_t_condvar.
-rw-r--r-- | libguile/threads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/threads.c b/libguile/threads.c index dcd91af05..f6762c9bd 100644 --- a/libguile/threads.c +++ b/libguile/threads.c @@ -145,7 +145,7 @@ scm_init_threads (SCM_STACKITEM *i) scm_tc16_thread = scm_make_smob_type ("thread", 0); scm_tc16_mutex = scm_make_smob_type ("mutex", sizeof (scm_t_mutex)); scm_tc16_condvar = scm_make_smob_type ("condition-variable", - sizeof (scm_t_condvar)); + sizeof (scm_t_cond)); #include "libguile/threads.x" /* Initialize implementation specific details of the threads support */ |