]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
nbtlm: use semicolons instead of commas for (void) args
authorAndreas Falkenhahn <andreas@falkenhahn.com>
Sun, 16 Apr 2023 13:37:59 +0000 (15:37 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Sun, 16 Apr 2023 15:05:15 +0000 (17:05 +0200)
Closes #10978

lib/vauth/ntlm.c

index 5aa7e6ec0058f0c9049f0f19fc8b5ddd564e9e1e..93096ba5eccd98c07964fe0fdaf81fc817cba8e2 100644 (file)
@@ -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);