diff options
author | Christopher Faylor <me@cgf.cx> | 2002-05-12 01:50:38 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-05-12 01:50:38 +0000 |
commit | 6566d27da452d1f4a3397967c63aff7f6257fc9a (patch) | |
tree | 599ed32808df5f53b636f58e2f5ffaacc4ccf629 /winsup/cygwin/times.cc | |
parent | 0371d66a64f83c0bd34128ad4e4a5d9e0b74e884 (diff) | |
download | cygnal-6566d27da452d1f4a3397967c63aff7f6257fc9a.tar.gz cygnal-6566d27da452d1f4a3397967c63aff7f6257fc9a.tar.bz2 cygnal-6566d27da452d1f4a3397967c63aff7f6257fc9a.zip |
fix formatting
Diffstat (limited to 'winsup/cygwin/times.cc')
-rw-r--r-- | winsup/cygwin/times.cc | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/winsup/cygwin/times.cc b/winsup/cygwin/times.cc index 03cb09d0c..96b98751d 100644 --- a/winsup/cygwin/times.cc +++ b/winsup/cygwin/times.cc @@ -165,10 +165,11 @@ gettimeofday(struct timeval *tv, struct timezone *tz) if (tz != NULL) { - if (!tzflag) { - tzset(); - tzflag = true; - } + if (!tzflag) + { + tzset(); + tzflag = true; + } tz->tz_minuteswest = _timezone / 60; tz->tz_dsttime = _daylight; } |