From eb5c3f3707fe142f2b8d580893a202dcda5b1c6f Mon Sep 17 00:00:00 2001 From: Jay Satiro Date: Wed, 21 Aug 2024 01:25:14 -0400 Subject: [PATCH] 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 --- src/tool_hugehelp.c.cvs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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(); -- 2.47.3