]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/thread.cpp
Style updates
[libs/core.git] / source / core / thread.cpp
index 0fc86cf07c7cf18b23289438b9ecb84c5847dd2d..810b1f80485197eeb66552707897c89e42356215 100644 (file)
@@ -26,7 +26,7 @@ void Thread::join()
 #else
        pthread_join(thread_, 0);
 #endif
-       launched_=false;
+       launched_ = false;
 }
 
 /**
@@ -67,11 +67,11 @@ void Thread::launch()
 
 #ifdef WIN32
        DWORD dummy;  // Win9x needs the lpTthreadId parameter
-       thread_=CreateThread(0, 0, &main_, this, 0, &dummy);
+       thread_ = CreateThread(0, 0, &main_, this, 0, &dummy);
 #else
        pthread_create(&thread_, 0, &main_, this);
 #endif
-       launched_=true;
+       launched_ = true;
 }
 
 } // namespace Msp