Title: [227420] trunk/Source/WebCore
Revision
227420
Author
[email protected]
Date
2018-01-23 09:26:41 -0800 (Tue, 23 Jan 2018)

Log Message

Unreviewed, fix some format specifiers added in r227190
https://bugs.webkit.org/show_bug.cgi?id=181454

* dom/messageports/MessagePortChannel.cpp:
(WebCore::MessagePortChannel::takeAllMessagesForPort):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (227419 => 227420)


--- trunk/Source/WebCore/ChangeLog	2018-01-23 17:21:08 UTC (rev 227419)
+++ trunk/Source/WebCore/ChangeLog	2018-01-23 17:26:41 UTC (rev 227420)
@@ -1,3 +1,11 @@
+2018-01-23  Michael Catanzaro  <[email protected]>
+
+        Unreviewed, fix some format specifiers added in r227190
+        https://bugs.webkit.org/show_bug.cgi?id=181454
+
+        * dom/messageports/MessagePortChannel.cpp:
+        (WebCore::MessagePortChannel::takeAllMessagesForPort):
+
 2018-01-23  Ting-Wei Lan  <[email protected]>
 
         [GTK] Add user agent quirk for Microsoft Outlook Web App

Modified: trunk/Source/WebCore/dom/messageports/MessagePortChannel.cpp (227419 => 227420)


--- trunk/Source/WebCore/dom/messageports/MessagePortChannel.cpp	2018-01-23 17:21:08 UTC (rev 227419)
+++ trunk/Source/WebCore/dom/messageports/MessagePortChannel.cpp	2018-01-23 17:26:41 UTC (rev 227420)
@@ -184,7 +184,7 @@
 
     ++m_messageBatchesInFlight;
 
-    LOG(MessagePorts, "There are %zu messages to take for port %s. Taking them now, messages in flight is now %llu", result.size(), port.logString().utf8().data(), m_messageBatchesInFlight);
+    LOG(MessagePorts, "There are %zu messages to take for port %s. Taking them now, messages in flight is now %" PRIu64, result.size(), port.logString().utf8().data(), m_messageBatchesInFlight);
 
     auto size = result.size();
     HashSet<RefPtr<MessagePortChannel>> transferredPortProtectors;
@@ -196,7 +196,7 @@
         UNUSED_PARAM(size);
 #endif
         --m_messageBatchesInFlight;
-        LOG(MessagePorts, "Message port channel %s was notified that a batch of %zu message port messages targeted for port %s just completed dispatch, in flight is now %llu", logString().utf8().data(), size, port.logString().utf8().data(), m_messageBatchesInFlight);
+        LOG(MessagePorts, "Message port channel %s was notified that a batch of %zu message port messages targeted for port %s just completed dispatch, in flight is now %" PRIu64, logString().utf8().data(), size, port.logString().utf8().data(), m_messageBatchesInFlight);
 
     });
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to