diff options
author | Christopher Faylor <me@cgf.cx> | 2002-09-23 00:31:31 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-09-23 00:31:31 +0000 |
commit | f0227ea3c78d8d23dc35f0939219649447eecfae (patch) | |
tree | 0a116e294fa35db8a66901f6ef85b41720913c2f /winsup/cygwin/times.cc | |
parent | c87c8a533f9e917878d433956420953598ab6cd6 (diff) | |
download | cygnal-f0227ea3c78d8d23dc35f0939219649447eecfae.tar.gz cygnal-f0227ea3c78d8d23dc35f0939219649447eecfae.tar.bz2 cygnal-f0227ea3c78d8d23dc35f0939219649447eecfae.zip |
More GNUify non-GNU formatted functions calls throughout.
Diffstat (limited to 'winsup/cygwin/times.cc')
-rw-r--r-- | winsup/cygwin/times.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/times.cc b/winsup/cygwin/times.cc index 6bb981d1a..635d89268 100644 --- a/winsup/cygwin/times.cc +++ b/winsup/cygwin/times.cc @@ -334,7 +334,7 @@ corelocaltime (const time_t * tim_p) int yleap; _CONST int *ip; #ifdef _MT_SAFE - struct tm &localtime_buf=_reent_winsup()->_localtime_buf; + struct tm &localtime_buf=_reent_winsup ()->_localtime_buf; #else static NO_COPY struct tm localtime_buf = {0}; #endif @@ -416,7 +416,7 @@ localtime (const time_t *tim_p) time_t tim = *tim_p; struct tm *rtm; - tzset(); + tzset (); tim -= _timezone; |