1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-30 00:33:09 +00:00

Remove an extra semicolon

No functional change.
This commit is contained in:
Marco Costalba 2012-12-15 11:20:04 +01:00
parent a2f46446cf
commit 3ddf91d9d1

View file

@ -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();
}