Title: [151102] trunk/Source/WTF
Revision
151102
Author
par...@webkit.org
Date
2013-06-03 05:38:03 -0700 (Mon, 03 Jun 2013)

Log Message

Unreviewed WinCE build fix after r150833.

* wtf/DateMath.cpp:
(WTF::calculateDSTOffset):

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (151101 => 151102)


--- trunk/Source/WTF/ChangeLog	2013-06-03 11:47:46 UTC (rev 151101)
+++ trunk/Source/WTF/ChangeLog	2013-06-03 12:38:03 UTC (rev 151102)
@@ -1,3 +1,10 @@
+2013-06-03  Patrick Gansterer  <par...@webkit.org>
+
+        Unreviewed WinCE build fix after r150833.
+
+        * wtf/DateMath.cpp:
+        (WTF::calculateDSTOffset):
+
 2013-06-03  Gyuyoung Kim  <gyuyoung....@samsung.com>
 
         [WTF] Add OwnArrayPtr vectortraits template 

Modified: trunk/Source/WTF/wtf/DateMath.cpp (151101 => 151102)


--- trunk/Source/WTF/wtf/DateMath.cpp	2013-06-03 11:47:46 UTC (rev 151101)
+++ trunk/Source/WTF/wtf/DateMath.cpp	2013-06-03 12:38:03 UTC (rev 151102)
@@ -423,7 +423,7 @@
 static double calculateDSTOffset(time_t localTime, double utcOffset)
 {
 #if OS(WINCE)
-    UNUSED_PARAM(localTimeSeconds);
+    UNUSED_PARAM(localTime);
     UNUSED_PARAM(utcOffset);
     return 0;
 #else
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to