diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-03-12 16:09:34 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-03-12 16:09:34 +0000 |
commit | b97206b1020784c435dad4ff8f651e95767d9a5c (patch) | |
tree | 20b3001193094b4672067a983577b1766e17409a /libguile/coop-threads.c | |
parent | e282f286ebae78ac771550b65b04778807ded258 (diff) | |
download | guile-b97206b1020784c435dad4ff8f651e95767d9a5c.tar.gz |
* struct.c, coop-threads.c: SCM_ASSCM/ASWORD fixes.
Diffstat (limited to 'libguile/coop-threads.c')
-rw-r--r-- | libguile/coop-threads.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/coop-threads.c b/libguile/coop-threads.c index 00a2cce05..7d4b73570 100644 --- a/libguile/coop-threads.c +++ b/libguile/coop-threads.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1995, 1996, 1997, 1998, 2000 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -210,7 +210,7 @@ scheme_launch_thread (void *p) &data, (scm_catch_handler_t) scheme_handler_bootstrip, &data, - &thread); + (SCM_STACKITEM *) &thread); scm_thread_count--; SCM_DEFER_INTS; } @@ -322,7 +322,7 @@ c_launch_thread (void *p) data, (scm_catch_handler_t) c_handler_bootstrip, data, - &thread); + (SCM_STACKITEM *) &thread); scm_thread_count--; scm_must_free ((char *) data); } |