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
+1 -1
View File
@@ -138,7 +138,7 @@ int cSocket::WSAStartup(void)
#ifdef _WIN32
WSADATA wsaData;
memset(&wsaData, 0, sizeof(wsaData));
return ::WSAStartup(MAKEWORD(2, 2),&wsaData);
return ::WSAStartup(MAKEWORD(2, 2), &wsaData);
#else
return 0;
#endif
+4 -4
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