lib3207.c try dropping unconst

This commit is contained in:
Viktor Szakats 2025-08-02 11:45:03 +02:00
parent 63349b7faf
commit e2bd2d0335
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

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