mirror of
https://github.com/curl/curl.git
synced 2026-08-04 05:10:00 +03:00
string formatting: fix 15+ printf-style format strings
This commit is contained in:
parent
4d346673a2
commit
4fad1943a2
7 changed files with 28 additions and 28 deletions
12
lib/multi.c
12
lib/multi.c
|
|
@ -1231,12 +1231,12 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||
case CURLM_STATE_WAITDO:
|
||||
/* Wait for our turn to DO when we're pipelining requests */
|
||||
#ifdef DEBUGBUILD
|
||||
infof(data, "WAITDO: Conn %ld send pipe %zu inuse %d athead %d\n",
|
||||
infof(data, "WAITDO: Conn %ld send pipe %zu inuse %s athead %s\n",
|
||||
easy->easy_conn->connection_id,
|
||||
easy->easy_conn->send_pipe->size,
|
||||
easy->easy_conn->writechannel_inuse?1:0,
|
||||
easy->easy_conn->writechannel_inuse?"TRUE":"FALSE",
|
||||
isHandleAtHead(data,
|
||||
easy->easy_conn->send_pipe)?1:0);
|
||||
easy->easy_conn->send_pipe)?"TRUE":"FALSE");
|
||||
#endif
|
||||
if(!easy->easy_conn->writechannel_inuse &&
|
||||
isHandleAtHead(data,
|
||||
|
|
@ -1423,12 +1423,12 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||
}
|
||||
#ifdef DEBUGBUILD
|
||||
else {
|
||||
infof(data, "WAITPERFORM: Conn %ld recv pipe %zu inuse %d athead %d\n",
|
||||
infof(data, "WAITPERFORM: Conn %ld recv pipe %zu inuse %s athead %s\n",
|
||||
easy->easy_conn->connection_id,
|
||||
easy->easy_conn->recv_pipe->size,
|
||||
easy->easy_conn->readchannel_inuse?1:0,
|
||||
easy->easy_conn->readchannel_inuse?"TRUE":"FALSE",
|
||||
isHandleAtHead(data,
|
||||
easy->easy_conn->recv_pipe)?1:0);
|
||||
easy->easy_conn->recv_pipe)?"TRUE":"FALSE");
|
||||
}
|
||||
#endif
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue