From 5379189cd7ed1c2aa0b615da0647d6f73ac4ec95 Mon Sep 17 00:00:00 2001 From: Ivan Zhakov Date: Sun, 19 Jun 2022 23:54:36 +0000 Subject: * threadproc/win32/thread.c (dummy_worker): Use correct calling convention (APR_THREAD_FUNC). git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1902076 13f79535-47bb-0310-9956-ffa450edef68 --- threadproc/win32/thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'threadproc') diff --git a/threadproc/win32/thread.c b/threadproc/win32/thread.c index 7e1c1a8be..be023e2e0 100644 --- a/threadproc/win32/thread.c +++ b/threadproc/win32/thread.c @@ -76,7 +76,7 @@ APR_DECLARE(apr_status_t) apr_threadattr_guardsize_set(apr_threadattr_t *attr, static APR_THREAD_LOCAL apr_thread_t *current_thread = NULL; #endif -static void *dummy_worker(void *opaque) +static void * APR_THREAD_FUNC dummy_worker(void *opaque) { apr_thread_t *thd = (apr_thread_t *)opaque; void *ret; -- cgit v1.2.1