Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2009-06-14 09:49:01 +0400
committerChristopher Faylor <me@cgf.cx>2009-06-14 09:49:01 +0400
commitb5b99c04869b30468a49237c4c09e2f6d0eca4ff (patch)
tree7cbe5f59a14c4fff02588b02952a64eeb769743a /winsup/cygwin/localtime.cc
parent6a712635dd1de131634c5db1cd5b9221a6544ec6 (diff)
* localtime.cc (time2): Take a stab at fixing a compiler warning.
Diffstat (limited to 'winsup/cygwin/localtime.cc')
-rw-r--r--winsup/cygwin/localtime.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/localtime.cc b/winsup/cygwin/localtime.cc
index c65596124..738f1780e 100644
--- a/winsup/cygwin/localtime.cc
+++ b/winsup/cygwin/localtime.cc
@@ -2006,7 +2006,7 @@ time2(struct tm *tmp, void (*funcp) P((const time_t*, long, struct tm*)),
t = time2sub(&tmp2, funcp, offset, okayp, true);
if (*okayp)
{
- if (t + 3600 < t) /* Sanity check */
+ if (tmp2.tm_sec + 3600 < t) /* Sanity check */
return WRONG;
return t + 3600;
}