From: Viktor Szakats Date: Tue, 13 Jan 2026 16:56:02 +0000 (+0100) Subject: url.h: fix `-Wdocumentation` X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=df246eeb8f4d062d773e93871f1a42640f23639e;p=thirdparty%2Fcurl.git url.h: fix `-Wdocumentation` Seen when testing `-Weverything`: ``` lib/url.h:84:11: warning: parameter 'nowp' not found in the function declaration [-Wdocumentation] 84 | * @param nowp NULL or pointer to time being checked against. | ^~~~ ``` Follow-up to 2de22a00c7adb81b4e5cbc90785e29b4b083c1ed #19961 Closes #20294 --- diff --git a/lib/url.h b/lib/url.h index 3a8d57c377..e43836eba8 100644 --- a/lib/url.h +++ b/lib/url.h @@ -81,7 +81,6 @@ const struct Curl_handler *Curl_getn_scheme_handler(const char *scheme, /** * Return TRUE iff the given connection is considered dead. - * @param nowp NULL or pointer to time being checked against. */ bool Curl_conn_seems_dead(struct connectdata *conn, struct Curl_easy *data);