| Index: runtime/bin/eventhandler_macos.cc
|
| diff --git a/runtime/bin/eventhandler_macos.cc b/runtime/bin/eventhandler_macos.cc
|
| index 63926d82f30373d75961fb21b584d31fceaf140e..a6554c9fc7e33b21045b780ee271243b2c82ed01 100644
|
| --- a/runtime/bin/eventhandler_macos.cc
|
| +++ b/runtime/bin/eventhandler_macos.cc
|
| @@ -361,7 +361,7 @@ int64_t EventHandlerImplementation::GetTimeout() {
|
|
|
| void EventHandlerImplementation::HandleTimeout() {
|
| if (timeout_ != kInfinityTimeout) {
|
| - intptr_t millis = timeout_ - TimerUtils::GetCurrentTimeMilliseconds();
|
| + int64_t millis = timeout_ - TimerUtils::GetCurrentTimeMilliseconds();
|
| if (millis <= 0) {
|
| DartUtils::PostNull(timeout_port_);
|
| timeout_ = kInfinityTimeout;
|
|
|