mirror of
https://github.com/curl/curl.git
synced 2025-09-18 18:12:49 +03:00
multi: remove a DEBUGF()
... it might call infof() with a NULL first argument that isn't harmful but makes it not do anything. The infof() line is not very useful anymore, it has served it purpose. Good riddance! Fixes #2627
This commit is contained in:
parent
f66d97b677
commit
923ce4a590
|
@ -1083,8 +1083,6 @@ CURLMcode curl_multi_wait(struct Curl_multi *multi,
|
||||||
int pollrc;
|
int pollrc;
|
||||||
/* wait... */
|
/* wait... */
|
||||||
pollrc = Curl_poll(ufds, nfds, timeout_ms);
|
pollrc = Curl_poll(ufds, nfds, timeout_ms);
|
||||||
DEBUGF(infof(data, "Curl_poll(%u ds, %d ms) == %d\n",
|
|
||||||
nfds, timeout_ms, pollrc));
|
|
||||||
|
|
||||||
if(pollrc > 0) {
|
if(pollrc > 0) {
|
||||||
retcode = pollrc;
|
retcode = pollrc;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user