git-svn-id: https://svn.webkit.org/repository/webkit/trunk@16562
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-09-25 Brady Eidson <beidson@apple.com>
+
+ Reviewed by Steve
+
+ Math error in SystemTimeWin
+
+ * platform/win/SystemTimeWin.cpp:
+ (WebCore::currentTime):
+
2006-09-25 Alexey Proskuryakov <ap@nypop.com>
Reviewed by Eric.
// of which 89 were leap years (1700, 1800, and 1900 were not leap years).
// That is a total of 134774 days, which is 11644473600 seconds.
- return t.QuadPart * 0.0000001 + 11644473600.0;
+ return t.QuadPart * 0.0000001 - 11644473600.0;
}
}