| Index: runtime/bin/thread_pool_test.cc
|
| diff --git a/runtime/bin/thread_pool_test.cc b/runtime/bin/thread_pool_test.cc
|
| index 34f39da43ef5138e355d2c4c9e2914a27cceefdb..2115bee2472559cfb8ed68bd89e7211eea0a6842 100644
|
| --- a/runtime/bin/thread_pool_test.cc
|
| +++ b/runtime/bin/thread_pool_test.cc
|
| @@ -24,7 +24,7 @@ static uint32_t task_sum = 0;
|
| void TestTaskHandler(ThreadPool::Task args) {
|
| MonitorLocker ml(monitor);
|
| task_count++;
|
| - task_sum += reinterpret_cast<int>(args);
|
| + task_sum += reinterpret_cast<intptr_t>(args);
|
| }
|
|
|
|
|
|
|