From 313c719cb83191e8ea0072edba4d9d399737eac4 Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Sun, 14 Jun 2009 09:35:35 +0000 Subject: * localtime.cc (time2): Take another stab at fixing a compiler warning. --- winsup/cygwin/localtime.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'winsup/cygwin/localtime.cc') diff --git a/winsup/cygwin/localtime.cc b/winsup/cygwin/localtime.cc index 738f1780e..c6615bd2a 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 (tmp2.tm_sec + 3600 < t) /* Sanity check */ + if (t + 3600 < 0) /* Sanity check */ return WRONG; return t + 3600; } -- cgit v1.2.3