From b97206b1020784c435dad4ff8f651e95767d9a5c Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Sun, 12 Mar 2000 16:09:34 +0000 Subject: [PATCH] * struct.c, coop-threads.c: SCM_ASSCM/ASWORD fixes. --- libguile/coop-threads.c | 6 +++--- 1 file 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); }