diff options
author | Jim Blandy <jimb@red-bean.com> | 1997-04-15 01:16:23 +0000 |
---|---|---|
committer | Jim Blandy <jimb@red-bean.com> | 1997-04-15 01:16:23 +0000 |
commit | 73f19016b904cf377655a6f5b9529d6f99481adc (patch) | |
tree | 2a51feb8fbaa16fa9d210d127a66de53956b67d3 | |
parent | 3e7b8512aebac534e7f17028af40ad002dd36688 (diff) | |
download | guile-73f19016b904cf377655a6f5b9529d6f99481adc.tar.gz |
* stime.c (scm_mktime): #ifndef HAVE_TM_ZONE, Use lt.tm_zone, not
lt->tm_zone.
-rw-r--r-- | libguile/stime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/stime.c b/libguile/stime.c index 90bbde93a..2847c04aa 100644 --- a/libguile/stime.c +++ b/libguile/stime.c @@ -415,7 +415,7 @@ scm_mktime (SCM sbd_time, SCM zone) if (itime != -1) { #ifdef HAVE_TM_ZONE - zname = lt->tm_zone; + zname = lt.tm_zone; #else # ifdef HAVE_TZNAME /* must be copied before calling tzset again. */ |