mirror of
https://github.com/curl/curl.git
synced 2026-06-16 12:45:39 +03:00
lib3207.c fix to not use thread-specific macros with no thread support fixup
This commit is contained in:
parent
dc44b3a01f
commit
ec1a1f438e
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue