examples/crawler: fix variable

A variable missed in the previous rename cleanup

Follow-up to 928363f28c
Reported-by: Gisle Vanem
Closes #19446
This commit is contained in:
Daniel Stenberg 2025-11-10 13:17:37 +01:00
parent 7e87255020
commit 8e321a53df
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2

View file

@ -232,7 +232,7 @@ int main(void)
if(is_html(ctype) && mem->size > 100) {
if(pending < max_requests &&
(complete + pending) < max_total) {
pending += follow_links(multi_curl, mem, url);
pending += follow_links(multi, mem, url);
still_running = 1;
}
}