Fix MacOS build

BUG=

Review URL: https://codereview.chromium.org/2035383004 .
This commit is contained in:
John McCutchan 2016-06-06 14:20:39 -07:00
parent 6fd8fd7987
commit 45e277a2cb

View file

@ -333,7 +333,7 @@ void PortMap::DebugDumpForMessageHandler(MessageHandler* handler) {
for (intptr_t i = 0; i < capacity_; i++) {
if (map_[i].handler == handler) {
if (map_[i].state == kLivePort) {
OS::Print("Live Port = %" Pd "\n", map_[i].port);
OS::Print("Live Port = %" Pd64 "\n", map_[i].port);
msg_handler = DartLibraryCalls::LookupHandler(map_[i].port);
OS::Print("Handler = %s\n", msg_handler.ToCString());
}