mirror of
https://github.com/curl/curl.git
synced 2026-06-01 19:44:16 +03:00
sockfilt: suppress conversion warning with explicit cast
MSVC warns when implicitly casting -1 to unsigned long.
This commit is contained in:
parent
70cbefeb5f
commit
0bdb811250
1 changed files with 1 additions and 1 deletions
|
|
@ -549,7 +549,7 @@ static DWORD WINAPI select_ws_wait_thread(LPVOID lpParameter)
|
|||
free(data);
|
||||
}
|
||||
else
|
||||
return -1;
|
||||
return (DWORD)-1;
|
||||
|
||||
/* retrieve the type of file to wait on */
|
||||
type = GetFileType(handle);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue