From 8e321a53df866dfb2a2d5c5fc77c9639f733f93f Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 10 Nov 2025 13:17:37 +0100 Subject: [PATCH] examples/crawler: fix variable A variable missed in the previous rename cleanup Follow-up to 928363f28ca533d743adcb70597c3e30917 Reported-by: Gisle Vanem Closes #19446 --- docs/examples/crawler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples/crawler.c b/docs/examples/crawler.c index c56ad5ab3c..4812a67d14 100644 --- a/docs/examples/crawler.c +++ b/docs/examples/crawler.c @@ -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; } }