mirror of
https://github.com/curl/curl.git
synced 2026-07-24 10:57:16 +03:00
lib/http: add missing whitespace in verbose output
Example: * upload completely sent off: 35out of 35 bytes Should be: * upload completely sent off: 35 out of 35 bytes
This commit is contained in:
parent
62b0fdca9e
commit
c1057fc9aa
1 changed files with 1 additions and 1 deletions
|
|
@ -2561,7 +2561,7 @@ CURLcode Curl_http(struct connectdata *conn, bool *done)
|
|||
if(http->writebytecount >= postsize) {
|
||||
/* already sent the entire request body, mark the "upload" as
|
||||
complete */
|
||||
infof(data, "upload completely sent off: %" FORMAT_OFF_T "out of "
|
||||
infof(data, "upload completely sent off: %" FORMAT_OFF_T " out of "
|
||||
"%" FORMAT_OFF_T " bytes\n",
|
||||
http->writebytecount, postsize);
|
||||
data->req.upload_done = TRUE;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue