Gisle Vanem corrected a mistake in a recent progress fix

This commit is contained in:
Daniel Stenberg 2004-04-19 07:18:26 +00:00
parent 25e98179be
commit 5887945828
1 changed files with 1 additions and 1 deletions

View File

@ -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 =