diff options
Diffstat (limited to 'base/platform_thread_posix.cc')
-rw-r--r-- | base/platform_thread_posix.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/platform_thread_posix.cc b/base/platform_thread_posix.cc index 4cca4e6..4cd56d9 100644 --- a/base/platform_thread_posix.cc +++ b/base/platform_thread_posix.cc @@ -23,7 +23,7 @@ void InitThreading(); static void* ThreadFunc(void* closure) { PlatformThread::Delegate* delegate = static_cast<PlatformThread::Delegate*>(closure); - delegate->ThreadMain(); + delegate->ThreadMain(); return NULL; } |