diff options
Diffstat (limited to 'base/platform_thread_win.cc')
-rw-r--r-- | base/platform_thread_win.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/platform_thread_win.cc b/base/platform_thread_win.cc index d813bb72..236c00b 100644 --- a/base/platform_thread_win.cc +++ b/base/platform_thread_win.cc @@ -23,7 +23,7 @@ typedef struct tagTHREADNAME_INFO { DWORD __stdcall ThreadFunc(void* closure) { PlatformThread::Delegate* delegate = static_cast<PlatformThread::Delegate*>(closure); - delegate->ThreadMain(); + delegate->ThreadMain(); return NULL; } |