Changeset 254347 in webkit


Ignore:
Timestamp:
Jan 10, 2020 10:32:09 AM (4 years ago)
Author:
commit-queue@webkit.org
Message:

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

Patch by Víctor Manuel Jáquez Leal <vjaquez@igalia.com> 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):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r254345 r254347  
     12020-01-10  Víctor Manuel Jáquez Leal  <vjaquez@igalia.com>
     2
     3        Silence compiler warning
     4        https://bugs.webkit.org/show_bug.cgi?id=206070
     5
     6        Reviewed by Chris Dumez.
     7
     8        Silence compiler by using the proper formatter for log out.
     9
     10        No functional changes.
     11
     12        * WebProcess/WebProcess.cpp:
     13        (WebKit::WebProcess::didReceiveMessage):
     14
    1152020-01-10  Alex Christensen  <achristensen@webkit.org>
    216
  • trunk/Source/WebKit/WebProcess/WebProcess.cpp

    r254310 r254347  
    760760#endif
    761761
    762     LOG_ERROR("Unhandled web process message '%s:%s' (destination: %llu)", decoder.messageReceiverName().toString().data(), decoder.messageName().toString().data(), decoder.destinationID());
     762    LOG_ERROR("Unhandled web process message '%s:%s' (destination: %" PRIu64 ")", decoder.messageReceiverName().toString().data(), decoder.messageName().toString().data(), decoder.destinationID());
    763763}
    764764
Note: See TracChangeset for help on using the changeset viewer.