diff options
Diffstat (limited to 'src/mir_core/threads.cpp')
-rw-r--r-- | src/mir_core/threads.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mir_core/threads.cpp b/src/mir_core/threads.cpp index c4dbddd220..ddce70df8b 100644 --- a/src/mir_core/threads.cpp +++ b/src/mir_core/threads.cpp @@ -231,7 +231,7 @@ static void CALLBACK KillAllThreads(HWND, UINT, UINT_PTR, DWORD) {
if ( MirandaWaitForMutex(hStackMutex)) {
for (int j=0; j < threads.getCount(); j++) {
- THREAD_WAIT_ENTRY* p = threads[j];
+ THREAD_WAIT_ENTRY *p = threads[j];
char szModuleName[ MAX_PATH ];
GetModuleFileNameA(p->hOwner, szModuleName, sizeof(szModuleName));
TerminateThread(p->hThread, 9999);
|