From: Jay Satiro Date: Wed, 21 Aug 2024 05:25:14 +0000 (-0400) Subject: buildconf.bat: fix tool_hugehelp.c generation X-Git-Tag: curl-8_10_0~174 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb5c3f3707fe142f2b8d580893a202dcda5b1c6f;p=thirdparty%2Fcurl.git buildconf.bat: fix tool_hugehelp.c generation - Fix showhelp() function prototype in tool_hugehelp.c.cvs. Follow-up to 9a0cf564 which added the function. Closes https://github.com/curl/curl/pull/14622 --- diff --git a/src/tool_hugehelp.c.cvs b/src/tool_hugehelp.c.cvs index 8757cfc684..7711661317 100644 --- a/src/tool_hugehelp.c.cvs +++ b/src/tool_hugehelp.c.cvs @@ -30,8 +30,9 @@ void hugehelp(void) puts("built-in manual was disabled at build-time"); } -void showhelp(const char *arg, const char *endarg) +void showhelp(const char *trigger, const char *arg, const char *endarg) { + (void)trigger; (void)arg; (void)endarg; hugehelp();