diff options
| author | Garrett Wollman <wollman@FreeBSD.org> | 1994-09-13 03:44:49 +0000 |
|---|---|---|
| committer | Garrett Wollman <wollman@FreeBSD.org> | 1994-09-13 03:44:49 +0000 |
| commit | 23c76c74b714ed9ae64b1010ac51339975384a03 (patch) | |
| tree | f2a8c2ee6b5a647e08ea82c8c71d849bec96611a | |
| parent | 48d96b1761db1f46398134b489f070ae8a6851a2 (diff) | |
Notes
| -rw-r--r-- | lib/libc/stdtime/localtime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdtime/localtime.c b/lib/libc/stdtime/localtime.c index aafb751947187..54031479f1dc8 100644 --- a/lib/libc/stdtime/localtime.c +++ b/lib/libc/stdtime/localtime.c @@ -940,7 +940,7 @@ struct tm * const tmp; tmp->tm_isdst = ttisp->tt_isdst; tzname[tmp->tm_isdst] = (char *) &sp->chars[ttisp->tt_abbrind]; #ifdef TM_ZONE - tmp->TM_ZONE = (char *)&sp->chars[ttisp->tt_abbrind]; + tmp->TM_ZONE = &sp->chars[ttisp->tt_abbrind]; #endif /* defined TM_ZONE */ } |
