diff options
| author | rpj <rpj> | 2002-07-30 17:26:17 +0000 | 
|---|---|---|
| committer | rpj <rpj> | 2002-07-30 17:26:17 +0000 | 
| commit | 6ae85d969228650bd4cf432bd4d6dcd959bf1a59 (patch) | |
| tree | fffdf7e30cc3e1da93d8c4149f385c9e1ad0e484 /ptw32_threadDestroy.c | |
| parent | d9bad66cbb8823ad786ac480330db1c05e85557a (diff) | |
*** empty log message ***
Diffstat (limited to 'ptw32_threadDestroy.c')
| -rw-r--r-- | ptw32_threadDestroy.c | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/ptw32_threadDestroy.c b/ptw32_threadDestroy.c index 37fda08..1c503a6 100644 --- a/ptw32_threadDestroy.c +++ b/ptw32_threadDestroy.c @@ -51,18 +51,18 @@ ptw32_threadDestroy (pthread_t thread)        ptw32_callUserDestroyRoutines (thread);        if (thread->cancelEvent != NULL) -	{ -	  CloseHandle (thread->cancelEvent); -	} +				{ +					CloseHandle (thread->cancelEvent); +				}        (void) pthread_mutex_destroy(&thread->cancelLock);  #if ! defined (__MINGW32__) || defined (__MSVCRT__)        /* See documentation for endthread vs endthreadex. */        if( thread->threadH != 0 ) -	{ -	  CloseHandle( thread->threadH ); -	} +				{ +					CloseHandle( thread->threadH ); +				}  #endif        free (thread);  | 
