From 7d9a34028d87e55c8983c75b8e2170365f379234 Mon Sep 17 00:00:00 2001 From: simonmar Date: Sun, 14 Jan 2001 15:36:04 +0000 Subject: [PATCH] [project @ 2001-01-14 15:36:04 by simonmar] oops, fix a sign error that caused toClockTime to be wrong outside GMT. --- ghc/lib/std/Time.hsc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/lib/std/Time.hsc b/ghc/lib/std/Time.hsc index 9619d77..dc7077d 100644 --- a/ghc/lib/std/Time.hsc +++ b/ghc/lib/std/Time.hsc @@ -1,5 +1,5 @@ -- ----------------------------------------------------------------------------- --- $Id: Time.hsc,v 1.4 2001/01/12 17:04:00 simonmar Exp $ +-- $Id: Time.hsc,v 1.5 2001/01/14 15:36:04 simonmar Exp $ -- -- (c) The University of Glasgow, 1995-2001 -- @@ -468,7 +468,7 @@ toClockTime (CalendarTime year mon mday hour min sec psec -- result. -- gmtoff <- gmtoff p_tm - let res = fromIntegral t + tz + fromIntegral gmtoff + let res = fromIntegral t + tz - fromIntegral gmtoff return (TOD (fromIntegral res) 0) -- ----------------------------------------------------------------------------- -- 1.7.10.4