Skip to content
Snippets Groups Projects
Commit 58879458 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Gisle Vanem corrected a mistake in a recent progress fix

parent 25e98179
No related branches found
No related tags found
No related merge requests found
......@@ -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 =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment