string formatting: fix 15+ printf-style format strings

This commit is contained in:
Yang Tse
2013-07-24 16:43:13 +02:00
parent 4d346673a2
commit 4fad1943a2
7 changed files with 28 additions and 28 deletions

View File

@@ -5336,7 +5336,7 @@ static CURLcode create_conn(struct SessionHandle *data,
if(reuse && !force_reuse && IsPipeliningPossible(data, conn_temp)) {
size_t pipelen = conn_temp->send_pipe->size + conn_temp->recv_pipe->size;
if(pipelen > 0) {
infof(data, "Found connection %ld, with requests in the pipe (%zd)\n",
infof(data, "Found connection %ld, with requests in the pipe (%zu)\n",
conn_temp->connection_id, pipelen);
if(conn_temp->bundle->num_connections < max_host_connections &&