Fix == to =

This commit is contained in:
Rui 2015-10-17 19:23:07 +09:00 committed by paramat
parent 6ba9d6545d
commit 06e5d0f5c5
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ void Thread::wait()
#elif USE_WIN_THREADS
int ret == WaitForSingleObject(m_thread_handle, INFINITE);
int ret = WaitForSingleObject(m_thread_handle, INFINITE);
assert(ret == WAIT_OBJECT_0);
UNUSED(ret);