easy: fix warning about possible comma misuse

Closes #16644
This commit is contained in:
Christian Schmitz 2025-03-10 09:22:22 +01:00 committed by Daniel Stenberg
parent 5fdf30b4dd
commit fc04eca8f8
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -565,7 +565,8 @@ static CURLcode wait_or_timeout(struct Curl_multi *multi, struct events *ev)
struct curltime before;
/* populate the fds[] array */
for(m = ev->list, f = &fds[0]; m; m = m->next) {
f = &fds[0];
for(m = ev->list; m; m = m->next) {
f->fd = m->socket.fd;
f->events = m->socket.events;
f->revents = 0;