mirror of
https://github.com/curl/curl.git
synced 2026-07-06 04:57:15 +03:00
Gisle Vanem corrected a mistake in a recent progress fix
This commit is contained in:
parent
25e98179be
commit
5887945828
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue