mirror of
https://github.com/curl/curl.git
synced 2026-07-29 23:58:05 +03:00
lib3026 drop redundant casts
This commit is contained in:
parent
b85f4aa51c
commit
0277fa0022
1 changed files with 2 additions and 2 deletions
|
|
@ -70,8 +70,8 @@ static CURLcode test_lib3026(const char *URL)
|
|||
|
||||
cleanup:
|
||||
for(i = 0; i < tid_count; i++) {
|
||||
WaitForSingleObject((HANDLE)thread_handles[i], INFINITE);
|
||||
CloseHandle((HANDLE)thread_handles[i]);
|
||||
WaitForSingleObject(thread_handles[i], INFINITE);
|
||||
CloseHandle(thread_handles[i]);
|
||||
if(results[i] != CURLE_OK) {
|
||||
curl_mfprintf(stderr, "%s:%d thread[%u]: curl_global_init() failed,"
|
||||
"with code %d (%s)\n", __FILE__, __LINE__,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue