From dc30aad3701ee9a521946ac70b00b41e5c9e46d9 Mon Sep 17 00:00:00 2001 From: Kevin Ryde Date: Wed, 28 Apr 2004 00:15:54 +0000 Subject: [PATCH] =?UTF-8?q?(scm=5Fthreads=5Fmark=5Fstacks):=20Correction?= =?UTF-8?q?=20sizet=20->=20size=5Ft.=20Reported=20by=20Andreas=20V=C3=B6ge?= =?UTF-8?q?le.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- libguile/threads.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libguile/threads.c b/libguile/threads.c index c5c3ca73f..34a60827d 100644 --- a/libguile/threads.c +++ b/libguile/threads.c @@ -953,7 +953,7 @@ scm_threads_mark_stacks (void) abort (); #endif /* Active thread */ - /* stack_len is long rather than sizet in order to guarantee + /* stack_len is long rather than size_t in order to guarantee that &stack_len is long aligned */ #if SCM_STACK_GROWS_UP stack_len = SCM_STACK_PTR (&t) - t->base; @@ -974,7 +974,7 @@ scm_threads_mark_stacks (void) / sizeof (SCM_STACKITEM))); scm_mark_locations (((size_t) t->base, - (sizet) stack_len)); + (size_t) stack_len)); #else stack_len = t->base - SCM_STACK_PTR (&t);