mirror of
https://github.com/curl/curl.git
synced 2026-08-25 16:33:38 +03:00
progress: fix progress meter update to run every second again
Closes #22562
This commit is contained in:
parent
1a17959fc7
commit
507ee5d792
1 changed files with 1 additions and 1 deletions
|
|
@ -527,7 +527,7 @@ static bool progress_calc(struct Curl_easy *data,
|
|||
}
|
||||
|
||||
if((p->delta.lastshow_us >= 0) && !data->req.done &&
|
||||
((elapsed_us - p->delta.lastshow_us) >= (1000 * 1000)))
|
||||
((elapsed_us - p->delta.lastshow_us) < (1000 * 1000)))
|
||||
return FALSE;
|
||||
p->delta.lastshow_us = elapsed_us;
|
||||
return TRUE;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue