From: Richard M. Stallman Date: Sun, 15 May 1994 19:25:21 +0000 (+0000) Subject: (Fcurrent_time_zone): Add cast. X-Git-Tag: emacs-19.34~8347 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5fd4de15976b66a71ed8d8ea987f5292f77dbfb1;p=emacs.git (Fcurrent_time_zone): Add cast. --- diff --git a/src/editfns.c b/src/editfns.c index 14e6d315659..e0b4a489794 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)