mirror of
https://github.com/curl/curl.git
synced 2026-08-25 23:33:37 +03:00
fix print formatting string directives
This commit is contained in:
parent
c0f3e32447
commit
3dcd2b82c4
9 changed files with 28 additions and 25 deletions
|
|
@ -411,7 +411,7 @@ CURLcode Curl_close(struct SessionHandle *data)
|
|||
if(data == (struct SessionHandle *) curr->ptr) {
|
||||
fprintf(stderr,
|
||||
"MAJOR problem we %p are still in send pipe for %p done %d\n",
|
||||
data, connptr, connptr->bits.done);
|
||||
data, connptr, (int)connptr->bits.done);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -421,7 +421,7 @@ CURLcode Curl_close(struct SessionHandle *data)
|
|||
if(data == (struct SessionHandle *) curr->ptr) {
|
||||
fprintf(stderr,
|
||||
"MAJOR problem we %p are still in recv pipe for %p done %d\n",
|
||||
data, connptr, connptr->bits.done);
|
||||
data, connptr, (int)connptr->bits.done);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -431,7 +431,7 @@ CURLcode Curl_close(struct SessionHandle *data)
|
|||
if(data == (struct SessionHandle *) curr->ptr) {
|
||||
fprintf(stderr,
|
||||
"MAJOR problem we %p are still in pend pipe for %p done %d\n",
|
||||
data, connptr, connptr->bits.done);
|
||||
data, connptr, (int)connptr->bits.done);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue