diff options
author | Rob Browning <rlb@defaultvalue.org> | 2003-03-27 20:09:13 +0000 |
---|---|---|
committer | Rob Browning <rlb@defaultvalue.org> | 2003-03-27 20:09:13 +0000 |
commit | b075613ec464a11ba4dfd8549f148fcf4d1a3cca (patch) | |
tree | 5ee01afafa62d28cf42fd924ae865e6a25e969db | |
parent | 2899af3ff7a762c820c367e05e8a2f8805811567 (diff) | |
download | guile-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.
-rw-r--r-- | libguile/null-threads.c | 2 |
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); |