Commit a7fcaf89 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

WinCE: typos

parent 69d77039
...@@ -71,7 +71,7 @@ DWORD WaitForMultipleObjectsEx (DWORD nCount, const HANDLE *lpHandles, ...@@ -71,7 +71,7 @@ DWORD WaitForMultipleObjectsEx (DWORD nCount, const HANDLE *lpHandles,
HANDLE handles[nCount + 1]; HANDLE handles[nCount + 1];
DWORD ret; DWORD ret;
memcpy(handles, lpHandles, count * sizeof(HANDLE)); memcpy(handles, lpHandles, nCount * sizeof(HANDLE));
if (bAlertable) if (bAlertable)
{ {
struct vlc_thread *th = vlc_threadvar_get (thread_key); struct vlc_thread *th = vlc_threadvar_get (thread_key);
...@@ -82,7 +82,7 @@ DWORD WaitForMultipleObjectsEx (DWORD nCount, const HANDLE *lpHandles, ...@@ -82,7 +82,7 @@ DWORD WaitForMultipleObjectsEx (DWORD nCount, const HANDLE *lpHandles,
assert (!bWaitAll); assert (!bWaitAll);
} }
else else
bAltertable = FALSE; bAlertable = FALSE;
} }
ret = WaitForMultipleObjects (nCount + bAlertable, handles, bWaitAll, ret = WaitForMultipleObjects (nCount + bAlertable, handles, bWaitAll,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment