Title: [254347] trunk/Source/WebKit
Revision
254347
Author
[email protected]
Date
2020-01-10 10:32:09 -0800 (Fri, 10 Jan 2020)

Log Message

Silence compiler warning
https://bugs.webkit.org/show_bug.cgi?id=206070

Patch by Víctor Manuel Jáquez Leal <[email protected]> on 2020-01-10
Reviewed by Chris Dumez.

Silence compiler by using the proper formatter for log out.

No functional changes.

* WebProcess/WebProcess.cpp:
(WebKit::WebProcess::didReceiveMessage):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (254346 => 254347)


--- trunk/Source/WebKit/ChangeLog	2020-01-10 18:14:02 UTC (rev 254346)
+++ trunk/Source/WebKit/ChangeLog	2020-01-10 18:32:09 UTC (rev 254347)
@@ -1,3 +1,17 @@
+2020-01-10  Víctor Manuel Jáquez Leal  <[email protected]>
+
+        Silence compiler warning
+        https://bugs.webkit.org/show_bug.cgi?id=206070
+
+        Reviewed by Chris Dumez.
+
+        Silence compiler by using the proper formatter for log out.
+
+        No functional changes.
+
+        * WebProcess/WebProcess.cpp:
+        (WebKit::WebProcess::didReceiveMessage):
+
 2020-01-10  Alex Christensen  <[email protected]>
 
         Expand _WKResourceLoadDelegate callbacks

Modified: trunk/Source/WebKit/WebProcess/WebProcess.cpp (254346 => 254347)


--- trunk/Source/WebKit/WebProcess/WebProcess.cpp	2020-01-10 18:14:02 UTC (rev 254346)
+++ trunk/Source/WebKit/WebProcess/WebProcess.cpp	2020-01-10 18:32:09 UTC (rev 254347)
@@ -759,7 +759,7 @@
     }
 #endif
 
-    LOG_ERROR("Unhandled web process message '%s:%s' (destination: %llu)", decoder.messageReceiverName().toString().data(), decoder.messageName().toString().data(), decoder.destinationID());
+    LOG_ERROR("Unhandled web process message '%s:%s' (destination: %" PRIu64 ")", decoder.messageReceiverName().toString().data(), decoder.messageName().toString().data(), decoder.destinationID());
 }
 
 WebFrame* WebProcess::webFrame(FrameIdentifier frameID) const
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to