From 45e277a2cb16d9e7068e682cc395337b2d3d8467 Mon Sep 17 00:00:00 2001 From: John McCutchan Date: Mon, 6 Jun 2016 14:20:39 -0700 Subject: [PATCH] Fix MacOS build BUG= Review URL: https://codereview.chromium.org/2035383004 . --- runtime/vm/port.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/vm/port.cc b/runtime/vm/port.cc index 96bd7bbbef3..8ef15c56c47 100644 --- a/runtime/vm/port.cc +++ b/runtime/vm/port.cc @@ -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()); }