diff options
| author | Richard M. Stallman | 1994-05-15 19:25:21 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-05-15 19:25:21 +0000 |
| commit | 5fd4de15976b66a71ed8d8ea987f5292f77dbfb1 (patch) | |
| tree | 4fd11b7ffeeb86f878fb6bb208bd1353cff60fc5 | |
| parent | 57705ff77c031360eed319ddb03e0f7806b5b72b (diff) | |
| download | emacs-5fd4de15976b66a71ed8d8ea987f5292f77dbfb1.tar.gz emacs-5fd4de15976b66a71ed8d8ea987f5292f77dbfb1.zip | |
(Fcurrent_time_zone): Add cast.
| -rw-r--r-- | src/editfns.c | 2 |
1 files changed, 1 insertions, 1 deletions
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.") | |||
| 680 | s = 0; | 680 | s = 0; |
| 681 | #ifdef HAVE_TM_ZONE | 681 | #ifdef HAVE_TM_ZONE |
| 682 | if (t->tm_zone) | 682 | if (t->tm_zone) |
| 683 | s = t->tm_zone; | 683 | s = (char *)t->tm_zone; |
| 684 | #else /* not HAVE_TM_ZONE */ | 684 | #else /* not HAVE_TM_ZONE */ |
| 685 | #ifdef HAVE_TZNAME | 685 | #ifdef HAVE_TZNAME |
| 686 | if (t->tm_isdst == 0 || t->tm_isdst == 1) | 686 | if (t->tm_isdst == 0 || t->tm_isdst == 1) |