mirror of
https://github.com/curl/curl.git
synced 2026-08-04 04:49:58 +03:00
fixes
This commit is contained in:
parent
2f6eec2c77
commit
a0f358bd7f
28 changed files with 77 additions and 75 deletions
|
|
@ -1194,7 +1194,7 @@ CURLMcode Curl_multi_pollset(struct Curl_easy *data,
|
|||
break;
|
||||
|
||||
default:
|
||||
failf(data, "multi_getsock: unexpected multi state %d", data->mstate);
|
||||
failf(data, "multi_getsock: unexpected multi state %d", (int)data->mstate);
|
||||
DEBUGASSERT(0);
|
||||
break;
|
||||
}
|
||||
|
|
@ -1624,7 +1624,7 @@ static CURLMcode multi_wait(struct Curl_multi *multi,
|
|||
timeout_ms = (int)timeout_internal;
|
||||
|
||||
if(data)
|
||||
CURL_TRC_M(data, "multi_wait(fds=%d, timeout=%d) tinternal=%ld",
|
||||
CURL_TRC_M(data, "multi_wait(fds=%u, timeout=%d) tinternal=%ld",
|
||||
cpfds.n, timeout_ms, timeout_internal);
|
||||
|
||||
#ifdef USE_WINSOCK
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue