diff options
-rw-r--r-- | src/writeout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/writeout.c b/src/writeout.c index 92a4c6382..7f2fa907a 100644 --- a/src/writeout.c +++ b/src/writeout.c @@ -141,12 +141,12 @@ void ourWriteOut(CURL *curl, char *writeinfo) case VAR_SIZE_UPLOAD: if(CURLE_OK == curl_easy_getinfo(curl, CURLINFO_SIZE_UPLOAD, &doubleinfo)) - fprintf(stream, "%.3f", doubleinfo); + fprintf(stream, "%.0f", doubleinfo); break; case VAR_SIZE_DOWNLOAD: if(CURLE_OK == curl_easy_getinfo(curl, CURLINFO_SIZE_DOWNLOAD, &doubleinfo)) - fprintf(stream, "%.3f", doubleinfo); + fprintf(stream, "%.0f", doubleinfo); break; case VAR_SPEED_DOWNLOAD: if(CURLE_OK == |