summaryrefslogtreecommitdiff
path: root/threadproc
diff options
context:
space:
mode:
authorIvan Zhakov <ivan@apache.org>2022-06-19 23:54:36 +0000
committerIvan Zhakov <ivan@apache.org>2022-06-19 23:54:36 +0000
commit5379189cd7ed1c2aa0b615da0647d6f73ac4ec95 (patch)
tree6159f22e11cc0617f682c2773e7a3521a6a62c3c /threadproc
parentf45894eae64308b8051fb191e85d9719612f812f (diff)
downloadapr-5379189cd7ed1c2aa0b615da0647d6f73ac4ec95.tar.gz
* 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
Diffstat (limited to 'threadproc')
-rw-r--r--threadproc/win32/thread.c2
1 files changed, 1 insertions, 1 deletions
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;