Title: [240788] trunk/Source/WebCore
Revision
240788
Author
[email protected]
Date
2019-01-31 08:37:41 -0800 (Thu, 31 Jan 2019)

Log Message

Unreviewed, fix incorrect string format
https://bugs.webkit.org/show_bug.cgi?id=193907
<rdar://problem/47604080>

* page/scrolling/ScrollingTree.cpp:
(WebCore::ScrollingTree::commitTreeState):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (240787 => 240788)


--- trunk/Source/WebCore/ChangeLog	2019-01-31 16:28:27 UTC (rev 240787)
+++ trunk/Source/WebCore/ChangeLog	2019-01-31 16:37:41 UTC (rev 240788)
@@ -1,3 +1,12 @@
+2019-01-31  Michael Catanzaro  <[email protected]>
+
+        Unreviewed, fix incorrect string format
+        https://bugs.webkit.org/show_bug.cgi?id=193907
+        <rdar://problem/47604080>
+
+        * page/scrolling/ScrollingTree.cpp:
+        (WebCore::ScrollingTree::commitTreeState):
+
 2019-01-30  Simon Fraser  <[email protected]>
 
         [Mac] Implement basic hit testing in the scrolling tree

Modified: trunk/Source/WebCore/page/scrolling/ScrollingTree.cpp (240787 => 240788)


--- trunk/Source/WebCore/page/scrolling/ScrollingTree.cpp	2019-01-31 16:28:27 UTC (rev 240787)
+++ trunk/Source/WebCore/page/scrolling/ScrollingTree.cpp	2019-01-31 16:37:41 UTC (rev 240788)
@@ -189,7 +189,7 @@
         if (nodeID == m_latchedNodeID)
             clearLatchedNode();
         
-        LOG(Scrolling, "ScrollingTree::commitTreeState - removing unvisited node %llu", nodeID);
+        LOG(Scrolling, "ScrollingTree::commitTreeState - removing unvisited node %" PRIu64, nodeID);
         m_nodeMap.remove(nodeID);
     }
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to