From: Dave Reisner Date: Wed, 21 Sep 2011 19:19:29 +0000 (+0200) Subject: lib/http: add missing whitespace in verbose output X-Git-Tag: upstream/7.37.1~3679 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c1057fc9aa9ba0304ea9afae38282ad1e9b3f1d4;p=platform%2Fupstream%2Fcurl.git 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 --- diff --git a/lib/http.c b/lib/http.c index 9939006..9f7a5a5 100644 --- a/lib/http.c +++ b/lib/http.c @@ -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;