From 5fd4de15976b66a71ed8d8ea987f5292f77dbfb1 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 15 May 1994 19:25:21 +0000 Subject: [PATCH] (Fcurrent_time_zone): Add cast. --- src/editfns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editfns.c b/src/editfns.c index 14e6d31565..e0b4a48979 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -680,7 +680,7 @@ the data it can't find.") s = 0; #ifdef HAVE_TM_ZONE if (t->tm_zone) - s = t->tm_zone; + s = (char *)t->tm_zone; #else /* not HAVE_TM_ZONE */ #ifdef HAVE_TZNAME if (t->tm_isdst == 0 || t->tm_isdst == 1) -- 2.20.1