mirror of
https://github.com/curl/curl.git
synced 2026-04-14 23:51:42 +03:00
easy: fix debug ev poll builds
Prior to this change the wrong variable name was used for one of the debug messages. Closes https://github.com/curl/curl/pull/19963
This commit is contained in:
parent
187e219616
commit
15de32f09d
1 changed files with 1 additions and 1 deletions
|
|
@ -652,7 +652,7 @@ static CURLcode wait_or_timeout(struct Curl_multi *multi, struct events *ev)
|
|||
if(spent_ms > 0) {
|
||||
#if DEBUG_EV_POLL
|
||||
curl_mfprintf(stderr, "poll timeout %ldms not updated, decrease by "
|
||||
"time spent %ldms\n", ev->ms, (long)timediff);
|
||||
"time spent %ldms\n", ev->ms, (long)spent_ms);
|
||||
#endif
|
||||
if(spent_ms > ev->ms)
|
||||
ev->ms = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue