diff options
| -rw-r--r-- | lib/curl_threads.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lib/curl_threads.c b/lib/curl_threads.c index 19897107a..c1624a913 100644 --- a/lib/curl_threads.c +++ b/lib/curl_threads.c @@ -110,7 +110,7 @@ curl_thread_t Curl_thread_create(unsigned int (CURL_STDCALL *func) (void *),  #else    t = (curl_thread_t)_beginthreadex(NULL, 0, func, arg, 0, NULL);  #endif -  if((t == 0) || (t == (curl_thread_t)-1L)) { +  if((t == 0) || (t == LongToHandle(-1L))) {  #ifdef _WIN32_WCE      DWORD gle = GetLastError();      errno = ((gle == ERROR_ACCESS_DENIED || | 
