mirror of
https://github.com/curl/curl.git
synced 2026-06-06 14:44:16 +03:00
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:
parent
ef577d85a4
commit
d7c54819ea
1 changed files with 1 additions and 1 deletions
|
|
@ -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]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue