diff options
author | Gary Houston <ghouston@arglist.com> | 2002-08-17 20:39:35 +0000 |
---|---|---|
committer | Gary Houston <ghouston@arglist.com> | 2002-08-17 20:39:35 +0000 |
commit | d900cd6dd406158c459bc133a20105ae16fe5064 (patch) | |
tree | 983078406134f789315fc23d294458cd11ea5b25 /libguile/coop.c | |
parent | 85835e5991345089cc61e2f2b658aebd9f1198f4 (diff) | |
download | guile-d900cd6dd406158c459bc133a20105ae16fe5064.tar.gz |
* coop.c (coop_create): removed bogus 2nd argument in scm_malloc
call.
Diffstat (limited to 'libguile/coop.c')
-rw-r--r-- | libguile/coop.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libguile/coop.c b/libguile/coop.c index 2a39a5910..889276e23 100644 --- a/libguile/coop.c +++ b/libguile/coop.c @@ -40,7 +40,7 @@ * If you do not wish that, delete this exception notice. */ -/* $Id: coop.c,v 1.30 2002-08-16 22:01:09 hanwen Exp $ */ +/* $Id: coop.c,v 1.31 2002-08-17 20:39:35 ghouston Exp $ */ /* Cooperative thread library, based on QuickThreads */ @@ -620,8 +620,7 @@ coop_create (coop_userf_t *f, void *pu) else #endif { - t = scm_malloc (sizeof (coop_t), "coop"); - + t = scm_malloc (sizeof (coop_t)); t->specific = NULL; t->n_keys = 0; #ifdef GUILE_PTHREAD_COMPAT |