aboutsummaryrefslogtreecommitdiff
path: root/winsup/cygwin/times.cc
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-09-23 00:31:31 +0000
committerChristopher Faylor <me@cgf.cx>2002-09-23 00:31:31 +0000
commitf0227ea3c78d8d23dc35f0939219649447eecfae (patch)
tree0a116e294fa35db8a66901f6ef85b41720913c2f /winsup/cygwin/times.cc
parentc87c8a533f9e917878d433956420953598ab6cd6 (diff)
downloadnewlib-f0227ea3c78d8d23dc35f0939219649447eecfae.zip
newlib-f0227ea3c78d8d23dc35f0939219649447eecfae.tar.gz
newlib-f0227ea3c78d8d23dc35f0939219649447eecfae.tar.bz2
More GNUify non-GNU formatted functions calls throughout.
Diffstat (limited to 'winsup/cygwin/times.cc')
-rw-r--r--winsup/cygwin/times.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/times.cc b/winsup/cygwin/times.cc
index 6bb981d..635d892 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;