summaryrefslogtreecommitdiff
path: root/lib/vauth
diff options
context:
space:
mode:
authorAndreas Falkenhahn <andreas@falkenhahn.com>2023-04-16 15:37:59 +0200
committerDaniel Stenberg <daniel@haxx.se>2023-04-16 17:05:15 +0200
commit15a361892d43828b01cf245c70ebb98f21a8dc83 (patch)
tree6cb159f819132e89cb18f4959540e06526c68494 /lib/vauth
parent81b2b577df40262716ff0e1c0e1cebabb99f012d (diff)
downloadcurl-15a361892d43828b01cf245c70ebb98f21a8dc83.tar.gz
nbtlm: use semicolons instead of commas for (void) args
Closes #10978
Diffstat (limited to 'lib/vauth')
-rw-r--r--lib/vauth/ntlm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/vauth/ntlm.c b/lib/vauth/ntlm.c
index 5aa7e6ec0..93096ba5e 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);