Title: [198939] trunk/Source/WebKit2
Revision
198939
Author
[email protected]
Date
2016-03-31 21:52:30 -0700 (Thu, 31 Mar 2016)

Log Message

Unreviewed EFL build fix caused by r198929.

* WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::layerVolatilityTimerFired): Need to use type casting in WEBPAGE_LOG_ALWAYS_ERROR() log.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (198938 => 198939)


--- trunk/Source/WebKit2/ChangeLog	2016-04-01 03:23:01 UTC (rev 198938)
+++ trunk/Source/WebKit2/ChangeLog	2016-04-01 04:52:30 UTC (rev 198939)
@@ -1,3 +1,10 @@
+2016-03-31  Gyuyoung Kim  <[email protected]>
+
+        Unreviewed EFL build fix caused by r198929.
+
+        * WebProcess/WebPage/WebPage.cpp:
+        (WebKit::WebPage::layerVolatilityTimerFired): Need to use type casting in WEBPAGE_LOG_ALWAYS_ERROR() log.
+
 2016-03-31  Daniel Bates  <[email protected]>
 
         REGRESSION (r194660): Navigating to HTTPS sites may fail with error

Modified: trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp (198938 => 198939)


--- trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp	2016-04-01 03:23:01 UTC (rev 198938)
+++ trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp	2016-04-01 04:52:30 UTC (rev 198939)
@@ -2039,7 +2039,7 @@
     }
 
     auto newInterval = std::min(2 * m_layerVolatilityTimer.repeatIntervalMS(), std::chrono::duration_cast<std::chrono::milliseconds>(maximumLayerVolatilityTimerInterval));
-    WEBPAGE_LOG_ALWAYS_ERROR("%p - WebPage - Failed to mark all layers as volatile, will retry in %lld ms", this, newInterval.count());
+    WEBPAGE_LOG_ALWAYS_ERROR("%p - WebPage - Failed to mark all layers as volatile, will retry in %lld ms", this, static_cast<long long>(newInterval.count()));
     m_layerVolatilityTimer.startRepeating(newInterval);
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to