projects
/
stockfish
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a2f4644
)
Remove an extra semicolon
author
Marco Costalba
<mcostalba@gmail.com>
Sat, 15 Dec 2012 10:20:04 +0000
(11:20 +0100)
committer
Marco Costalba
<mcostalba@gmail.com>
Sat, 15 Dec 2012 10:20:04 +0000
(11:20 +0100)
No functional change.
src/thread.cpp
patch
|
blob
|
history
diff --git
a/src/thread.cpp
b/src/thread.cpp
index 901a20b2bed1d67d1301aa8646d46fd2bdf50c80..c98c7867ed3ab5964e123c2af5a6f51821582cf0 100644
(file)
--- a/
src/thread.cpp
+++ b/
src/thread.cpp
@@
-143,7
+143,7
@@
void Thread::wait_for_stop_or_ponderhit() {
Signals.stopOnPonderhit = true;
mutex.lock();
- while (!Signals.stop) sleepCondition.wait(mutex);
;
+ while (!Signals.stop) sleepCondition.wait(mutex);
mutex.unlock();
}