summaryrefslogtreecommitdiff
path: root/plugins/YAPP
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-07-13 16:38:56 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-07-13 16:38:56 +0000
commitfa0c624cb29e204660c6af528c586984c092c2f2 (patch)
tree0811ab5c0e203922cad81e37f7616ce0d2153205 /plugins/YAPP
parentd8bbe6b4459415b6005b3609f444893fa3146e77 (diff)
bunch of incorrect thread calls
git-svn-id: http://svn.miranda-ng.org/main/trunk@950 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/YAPP')
-rw-r--r--plugins/YAPP/message_pump.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/YAPP/message_pump.cpp b/plugins/YAPP/message_pump.cpp
index c59c03f025..4a2b05b081 100644
--- a/plugins/YAPP/message_pump.cpp
+++ b/plugins/YAPP/message_pump.cpp
@@ -176,7 +176,7 @@ void InitMessagePump() {
InitServices();
hMPEvent = CreateEvent(0, TRUE, 0, 0);
- CloseHandle(mir_forkthreadex(MessagePumpThread, hMPEvent, 0, &message_pump_thread_id));
+ CloseHandle(mir_forkthreadex(MessagePumpThread, hMPEvent, &message_pump_thread_id));
WaitForSingleObject(hMPEvent, INFINITE);
CloseHandle(hMPEvent);
}