projects
/
oweals
/
minetest.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6ba9d65
)
Fix == to =
author
Rui
<Rui914@users.noreply.github.com>
Sat, 17 Oct 2015 10:23:07 +0000
(19:23 +0900)
committer
paramat
<mat.gregory@virginmedia.com>
Sat, 17 Oct 2015 16:20:58 +0000
(17:20 +0100)
src/threading/thread.cpp
patch
|
blob
|
history
diff --git
a/src/threading/thread.cpp
b/src/threading/thread.cpp
index a10082478beaab2090bfc87dca92798bf84fc6fe..cca7e636e13e5ea95eda29ff4c8f7108b50fc1af 100644
(file)
--- a/
src/threading/thread.cpp
+++ b/
src/threading/thread.cpp
@@
-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);