diff options
Diffstat (limited to 'runtime/monitor_test.cc')
-rw-r--r-- | runtime/monitor_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/monitor_test.cc b/runtime/monitor_test.cc index 0b168f86f4..8610899b9b 100644 --- a/runtime/monitor_test.cc +++ b/runtime/monitor_test.cc @@ -361,7 +361,7 @@ TEST_F(MonitorTest, TestTryLock) { thread_pool.AddTask(self, new TryLockTask(obj1)); thread_pool.StartWorkers(self); ScopedThreadSuspension sts(self, kSuspended); - thread_pool.Wait(Thread::Current(), /*do_work*/false, /*may_hold_locks*/false); + thread_pool.Wait(Thread::Current(), /*do_work=*/false, /*may_hold_locks=*/false); } // Test that the trylock actually locks the object. { |