mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
Gisle Vanem corrected a mistake in a recent progress fix
This commit is contained in:
parent
25e98179be
commit
5887945828
@ -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 =
|
||||
|
Loading…
Reference in New Issue
Block a user