nbtlm: use semicolons instead of commas for (void) args

Closes #10978
This commit is contained in:
Andreas Falkenhahn 2023-04-16 15:37:59 +02:00 committed by Daniel Stenberg
parent 81b2b577df
commit 15a361892d
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View 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);