From 58879458288bb71b82860f58fc579d573879b526 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 19 Apr 2004 07:18:26 +0000 Subject: [PATCH] Gisle Vanem corrected a mistake in a recent progress fix --- lib/progress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/progress.c b/lib/progress.c index 55bc3ceec..e7e5728ef 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 =