1
0

Fixed style: spaces after commas.

This commit is contained in:
madmaxoft
2014-07-19 14:53:41 +02:00
parent 4293db5eae
commit 00c524519e
42 changed files with 100 additions and 101 deletions

View File

@@ -92,11 +92,11 @@ void cThread::Start( bool a_bWaitOnDelete /* = true */ )
#else
DWORD ThreadID = 0;
HANDLE hThread = CreateThread(NULL // security
,0 // stack size
, 0 // stack size
, (LPTHREAD_START_ROUTINE) MyThread // function name
,this // parameters
,0 // flags
,&ThreadID ); // thread id
, this // parameters
, 0 // flags
, &ThreadID ); // thread id
CloseHandle( hThread );
#ifdef _MSC_VER