summaryrefslogtreecommitdiff
path: root/test/testlock.c
diff options
context:
space:
mode:
authorIvan Zhakov <ivan@apache.org>2019-09-09 21:41:22 +0000
committerIvan Zhakov <ivan@apache.org>2019-09-09 21:41:22 +0000
commit8b0590818e1b864079e0a6f403b15e35edbfa595 (patch)
treeac65b4d0c4545710dd3d5d905a380a7c5735b33d /test/testlock.c
parentdbb06b238b5f1869704842d64cf0d111b47a6e9c (diff)
downloadapr-8b0590818e1b864079e0a6f403b15e35edbfa595.tar.gz
Follow-up to r1866300: Add missing return value in test function.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1866712 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/testlock.c')
-rw-r--r--test/testlock.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/testlock.c b/test/testlock.c
index 1ee2e95fe..2b26929af 100644
--- a/test/testlock.c
+++ b/test/testlock.c
@@ -436,6 +436,8 @@ thread_win32_abandoned_mutex_function(apr_thread_t *thd, void *data)
/* exit from thread without unlocking mutex. */
apr_thread_exit(thd, rv);
+
+ return NULL;
}
static void test_win32_abandoned_mutex(abts_case *tc, void *data)