From: Daniel Stenberg Date: Mon, 19 Apr 2004 07:18:26 +0000 (+0000) Subject: Gisle Vanem corrected a mistake in a recent progress fix X-Git-Tag: curl-7_11_2~44 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=58879458288bb71b82860f58fc579d573879b526;p=thirdparty%2Fcurl.git Gisle Vanem corrected a mistake in a recent progress fix --- diff --git a/lib/progress.c b/lib/progress.c index 55bc3ceec0..e7e5728eff 100644 --- a/lib/progress.c +++ b/lib/progress.c @@ -250,7 +250,7 @@ int Curl_pgrsUpdate(struct connectdata *conn) /* The time spent so far (from the start) */ data->progress.timespent = Curl_tvdiff_secs(now, data->progress.start); - timespent = (long)data->progress.timespent*1000.0; + timespent = (long)data->progress.timespent; /* The average download speed this far */ data->progress.dlspeed =