diff options
author | Andy Wingo <wingo@wingomac.bcn.oblong.net> | 2010-10-18 13:27:17 +0200 |
---|---|---|
committer | Andy Wingo <wingo@wingomac.bcn.oblong.net> | 2010-10-18 13:27:17 +0200 |
commit | ddffdd788d433318d528f7e4ec3da2a48c0f1fb9 (patch) | |
tree | a2d5d4941a307f81c15fc9aadd87b80870b755aa /libguile/_scm.h | |
parent | 73124c6c630e2cc1877adc118691b96c4aec2c5b (diff) | |
download | guile-ddffdd788d433318d528f7e4ec3da2a48c0f1fb9.tar.gz |
_scm GUILE_USE_64_CALLS compilation warning fix
* libguile/_scm.h: Check that GUILE_USE_64_CALLS is defined. Fixes an
error on i386-apple-darwin9.8.0.
Diffstat (limited to 'libguile/_scm.h')
-rw-r--r-- | libguile/_scm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/_scm.h b/libguile/_scm.h index f9b140f8f..219b3a299 100644 --- a/libguile/_scm.h +++ b/libguile/_scm.h @@ -124,7 +124,7 @@ ((align) ? (((len) - 1UL) | ((align) - 1UL)) + 1UL : (len)) -#if GUILE_USE_64_CALLS && defined(HAVE_STAT64) +#if defined GUILE_USE_64_CALLS && GUILE_USE_64_CALLS && defined(HAVE_STAT64) #define CHOOSE_LARGEFILE(foo,foo64) foo64 #else #define CHOOSE_LARGEFILE(foo,foo64) foo |