mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-13 08:35:20 +02:00
Fix == to =
This commit is contained in:
@@ -167,7 +167,7 @@ void Thread::wait()
|
|||||||
|
|
||||||
#elif USE_WIN_THREADS
|
#elif USE_WIN_THREADS
|
||||||
|
|
||||||
int ret == WaitForSingleObject(m_thread_handle, INFINITE);
|
int ret = WaitForSingleObject(m_thread_handle, INFINITE);
|
||||||
assert(ret == WAIT_OBJECT_0);
|
assert(ret == WAIT_OBJECT_0);
|
||||||
UNUSED(ret);
|
UNUSED(ret);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user