summaryrefslogtreecommitdiff
path: root/libguile/null-threads.c
diff options
context:
space:
mode:
authorRob Browning <rlb@defaultvalue.org>2003-03-27 20:09:13 +0000
committerRob Browning <rlb@defaultvalue.org>2003-03-27 20:09:13 +0000
commitb075613ec464a11ba4dfd8549f148fcf4d1a3cca (patch)
tree5ee01afafa62d28cf42fd924ae865e6a25e969db /libguile/null-threads.c
parent2899af3ff7a762c820c367e05e8a2f8805811567 (diff)
downloadguile-b075613ec464a11ba4dfd8549f148fcf4d1a3cca.tar.gz
* null-threads.c: fix various preprocessor usages of new public
symbols to expect 0 or 1 values rather than 1 or undefined. i.e. change #ifdef to #if, etc.
Diffstat (limited to 'libguile/null-threads.c')
-rw-r--r--libguile/null-threads.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/null-threads.c b/libguile/null-threads.c
index 05b3ca403..ab43bd8e9 100644
--- a/libguile/null-threads.c
+++ b/libguile/null-threads.c
@@ -104,7 +104,7 @@ scm_threads_mark_stacks (void)
{
unsigned long stack_len = scm_stack_size (scm_stack_base);
-#ifdef SCM_STACK_GROWS_UP
+#if SCM_STACK_GROWS_UP
scm_mark_locations (scm_stack_base, stack_len);
#else
scm_mark_locations (scm_stack_base - stack_len, stack_len);