Skip to content
Snippets Groups Projects
Commit 06e5d0f5 authored by Rui's avatar Rui Committed by paramat
Browse files

Fix == to =

parent 6ba9d654
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment