From fa3b7e8b9010c7e41e493da8c139d17eab7dcb34 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 2 Aug 2025 11:36:36 +0200 Subject: [PATCH] lib2405.c drop UNCONST no longer necessary --- tests/libtest/lib2405.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/libtest/lib2405.c b/tests/libtest/lib2405.c index 2d22276194..571a0bcaa8 100644 --- a/tests/libtest/lib2405.c +++ b/tests/libtest/lib2405.c @@ -340,8 +340,7 @@ static CURLcode empty_multi_test(void) /* calling curl_multi_waitfds() on multi handle with added easy handle. */ easy_init(easy); - if(set_easy((char *)CURL_UNCONST("http://example.com"), easy, - TEST_USE_HTTP1) != CURLE_OK) + if(set_easy("http://example.com", easy, TEST_USE_HTTP1) != CURLE_OK) goto test_cleanup; multi_add_handle(multi, easy);