curl-library
[PATCH] lib/http: add missing whitespace in verbose output
From: Dave Reisner <d_at_falconindy.com>
Date: Wed, 21 Sep 2011 15:19:29 -0400
Date: Wed, 21 Sep 2011 15:19:29 -0400
Example:
* upload completely sent off: 35out of 35 bytes
Should be:
* upload completely sent off: 35 out of 35 bytes
---
Picking a minor nit I noticed today.
lib/http.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
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;
--
1.7.6.3
-------------------------------------------------------------------
List admin: http://cool.haxx.se/list/listinfo/curl-library
Etiquette: http://curl.haxx.se/mail/etiquette.html
Received on 2011-09-21