Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix == to =
  • Loading branch information
Rui authored and paramat committed Oct 17, 2015
1 parent 6ba9d65 commit 06e5d0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/threading/thread.cpp
Expand Up @@ -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);

Expand Down

0 comments on commit 06e5d0f

Please sign in to comment.