From: Andreas Falkenhahn Date: Sun, 16 Apr 2023 13:37:59 +0000 (+0200) Subject: nbtlm: use semicolons instead of commas for (void) args X-Git-Tag: curl-8_1_0~135 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=15a361892d43828b01cf245c70ebb98f21a8dc83;p=thirdparty%2Fcurl.git nbtlm: use semicolons instead of commas for (void) args Closes #10978 --- diff --git a/lib/vauth/ntlm.c b/lib/vauth/ntlm.c index 5aa7e6ec00..93096ba5ec 100644 --- a/lib/vauth/ntlm.c +++ b/lib/vauth/ntlm.c @@ -380,8 +380,8 @@ CURLcode Curl_auth_create_ntlm_type1_message(struct Curl_easy *data, (void)data; (void)userp; (void)passwdp; - (void)service, - (void)hostname, + (void)service; + (void)hostname; /* Clean up any former leftovers and initialise to defaults */ Curl_auth_cleanup_ntlm(ntlm);