summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Blandy <jimb@red-bean.com>1997-04-15 01:16:23 +0000
committerJim Blandy <jimb@red-bean.com>1997-04-15 01:16:23 +0000
commit73f19016b904cf377655a6f5b9529d6f99481adc (patch)
tree2a51feb8fbaa16fa9d210d127a66de53956b67d3
parent3e7b8512aebac534e7f17028af40ad002dd36688 (diff)
downloadguile-73f19016b904cf377655a6f5b9529d6f99481adc.tar.gz
* stime.c (scm_mktime): #ifndef HAVE_TM_ZONE, Use lt.tm_zone, not
lt->tm_zone.
-rw-r--r--libguile/stime.c2
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. */