lib2032: try fix

```
D:/a/curl/curl/tests/libtest/lib2032.c:145:29: error: sizeof on pointer operation will return size of 'CURL **' (aka 'void **') instead of 'CURL *[3]' (aka 'void *[3]') [-Werror,-Wsizeof-array-decay]
  145 |                   ntlm_easy + num_handles);
      |                   ~~~~~~~~~ ^
```
https://github.com/curl/curl/actions/runs/16351302841/job/46198524880?pr=17955#step:12:86
This commit is contained in:
Viktor Szakats 2025-07-17 19:17:59 +02:00
parent ef577d85a4
commit d7c54819ea
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

@ -142,7 +142,7 @@ static CURLcode test_lib2032(char *URL) /* libntlmconnect */
"testuser:testpass");
easy_setopt(ntlm_easy[num_handles], CURLOPT_WRITEFUNCTION, callback);
easy_setopt(ntlm_easy[num_handles], CURLOPT_WRITEDATA,
ntlm_easy + num_handles);
ntlm_easy[num_handles]);
easy_setopt(ntlm_easy[num_handles], CURLOPT_HEADER, 1L);
multi_add_handle(multi, ntlm_easy[num_handles]);