mirror of
https://github.com/curl/curl.git
synced 2026-08-25 13:03:37 +03:00
lib3207.c try dropping unconst
This commit is contained in:
parent
63349b7faf
commit
e2bd2d0335
1 changed files with 1 additions and 1 deletions
|
|
@ -80,7 +80,7 @@ static CURL_THREAD_RETURN_T CURL_STDCALL test_thread(void *ptr)
|
|||
for(i = 0; i < PER_THREAD_SIZE; i++) {
|
||||
CURL *curl = curl_easy_init();
|
||||
if(curl) {
|
||||
curl_easy_setopt(curl, CURLOPT_URL, (char *)CURL_UNCONST(ctx->URL));
|
||||
curl_easy_setopt(curl, CURLOPT_URL, ctx->URL);
|
||||
|
||||
/* use the share object */
|
||||
curl_easy_setopt(curl, CURLOPT_SHARE, ctx->share);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue