lib/http: add missing whitespace in verbose output
authorDave Reisner <d@falconindy.com>
Wed, 21 Sep 2011 19:19:29 +0000 (21:19 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 21 Sep 2011 20:19:53 +0000 (22:19 +0200)
Example:
* upload completely sent off: 35out of 35 bytes

Should be:
* upload completely sent off: 35 out of 35 bytes

lib/http.c

index 9939006..9f7a5a5 100644 (file)
@@ -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;