From 15a361892d43828b01cf245c70ebb98f21a8dc83 Mon Sep 17 00:00:00 2001 From: Andreas Falkenhahn Date: Sun, 16 Apr 2023 15:37:59 +0200 Subject: nbtlm: use semicolons instead of commas for (void) args Closes #10978 --- lib/vauth/ntlm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/vauth') 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); -- cgit v1.2.1