]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
buildconf.bat: fix tool_hugehelp.c generation
authorJay Satiro <raysatiro@yahoo.com>
Wed, 21 Aug 2024 05:25:14 +0000 (01:25 -0400)
committerJay Satiro <raysatiro@yahoo.com>
Wed, 21 Aug 2024 07:36:18 +0000 (03:36 -0400)
- 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

index 8757cfc6845739ac53a43e30d88d1d91becb432f..77116613177e3a11cd9ceaef5f5ee6fdd73897aa 100644 (file)
@@ -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();