Skip to content

Commit 06e5d0f

Browse files
rui914paramat
authored andcommittedOct 17, 2015
Fix == to =
1 parent 6ba9d65 commit 06e5d0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎src/threading/thread.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ void Thread::wait()
167167

168168
#elif USE_WIN_THREADS
169169

170-
int ret == WaitForSingleObject(m_thread_handle, INFINITE);
170+
int ret = WaitForSingleObject(m_thread_handle, INFINITE);
171171
assert(ret == WAIT_OBJECT_0);
172172
UNUSED(ret);
173173

0 commit comments

Comments
 (0)
Please sign in to comment.