Fixed compilation error, now using WaitForMultipleObjects.
This commit is contained in:
parent
c3923afa1f
commit
ebff396e90
@ -128,7 +128,7 @@ static void* smartcard_thread_func(void* arg)
|
||||
|
||||
while (1)
|
||||
{
|
||||
DWORD status = WaitForSingleObject(2, ev, FALSE, INFINITE);
|
||||
DWORD status = WaitForMultipleObjects(2, ev, FALSE, INFINITE);
|
||||
|
||||
if (status == WAIT_OBJECT_0 + 1)
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user