lib3207.c fix to not use thread-specific macros with no thread support fixup

This commit is contained in:
Viktor Szakats 2025-09-04 00:08:11 +02:00
parent dc44b3a01f
commit ec1a1f438e
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

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