aboutsummaryrefslogtreecommitdiff
path: root/lib/progress.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-04-19 07:18:26 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-04-19 07:18:26 +0000
commit58879458288bb71b82860f58fc579d573879b526 (patch)
treee799d4b1d248dae1751eb734480ead0ea016fb93 /lib/progress.c
parent25e98179be96184d733dd6b793a387b349d79287 (diff)
Gisle Vanem corrected a mistake in a recent progress fix
Diffstat (limited to 'lib/progress.c')
-rw-r--r--lib/progress.c2
1 files changed, 1 insertions, 1 deletions
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 =