diff options
author | George Hazan <george.hazan@gmail.com> | 2013-06-28 12:26:20 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-06-28 12:26:20 +0000 |
commit | 5ec8d06383256e77956faf6b794ecd49beaec408 (patch) | |
tree | 888b039156ed429e541f46c5f98c8b22f43f9099 /src/mir_core | |
parent | 43c77c7450670f9a06d2998df65e986cb32f627e (diff) |
fix for the clist_modern avatar animation code
git-svn-id: http://svn.miranda-ng.org/main/trunk@5167 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/mir_core')
-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);
|