(Fcurrent_time_zone): Add cast.
authorRichard M. Stallman <rms@gnu.org>
Sun, 15 May 1994 19:25:21 +0000 (19:25 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 15 May 1994 19:25:21 +0000 (19:25 +0000)
src/editfns.c

index 14e6d31..e0b4a48 100644 (file)
@@ -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)