mirror of
https://github.com/minetest/minetest.git
synced 2025-02-17 10:23:47 +01:00
Fix == to =
This commit is contained in:
@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user