Index: webrtc/base/criticalsection_unittest.cc |
diff --git a/webrtc/base/criticalsection_unittest.cc b/webrtc/base/criticalsection_unittest.cc |
index d33afacd8ce1b3fcc98c8852fd0e149155f6976d..6d9a9692afe69908212819be1c645029b1868d87 100644 |
--- a/webrtc/base/criticalsection_unittest.cc |
+++ b/webrtc/base/criticalsection_unittest.cc |
@@ -204,7 +204,7 @@ void StartThreads(ScopedPtrCollection<Thread>* threads, |
for (int i = 0; i < kNumThreads; ++i) { |
Thread* thread = new Thread(); |
thread->Start(); |
- thread->Post(handler); |
+ thread->Post(FROM_HERE, handler); |
threads->PushBack(thread); |
} |
} |