aboutsummaryrefslogtreecommitdiff
path: root/lib/url.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2013-07-24 16:43:13 +0200
committerYang Tse <yangsita@gmail.com>2013-07-24 16:46:24 +0200
commit4fad1943a256fcfbbb74603ba22fe7377e59e003 (patch)
tree534631327cf317970d0cf6dc093dfc73fa5ad435 /lib/url.c
parent4d346673a267c7111c667d5fe2962db09df506d4 (diff)
string formatting: fix 15+ printf-style format strings
Diffstat (limited to 'lib/url.c')
-rw-r--r--lib/url.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/url.c b/lib/url.c
index 347092d59..bc95c9a29 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -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 &&