From ec1a1f438e24be4c1da7cff83a89a69b6145411a Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 4 Sep 2025 00:08:11 +0200 Subject: [PATCH] lib3207.c fix to not use thread-specific macros with no thread support fixup --- tests/libtest/lib3207.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/libtest/lib3207.c b/tests/libtest/lib3207.c index 040e802511..e3b50ff40f 100644 --- a/tests/libtest/lib3207.c +++ b/tests/libtest/lib3207.c @@ -71,7 +71,7 @@ static size_t write_memory_callback(char *contents, size_t size, #if defined(USE_THREADS_POSIX) || defined(USE_THREADS_WIN32) static CURL_THREAD_RETURN_T CURL_STDCALL test_thread(void *ptr) #else -static void test_thread(void *ptr) +static unsigned int test_thread(void *ptr) #endif { struct Ctx *ctx = (struct Ctx *)ptr;