You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by tr...@apache.org on 2015/04/04 20:54:26 UTC

svn commit: r1671292 - /apr/apr/trunk/test/testlockperf.c

Author: trawick
Date: Sat Apr  4 18:54:26 2015
New Revision: 1671292

URL: http://svn.apache.org/r1671292
Log:
make internal function static to avoid a warning

Modified:
    apr/apr/trunk/test/testlockperf.c

Modified: apr/apr/trunk/test/testlockperf.c
URL: http://svn.apache.org/viewvc/apr/apr/trunk/test/testlockperf.c?rev=1671292&r1=1671291&r2=1671292&view=diff
==============================================================================
--- apr/apr/trunk/test/testlockperf.c (original)
+++ apr/apr/trunk/test/testlockperf.c Sat Apr  4 18:54:26 2015
@@ -180,7 +180,7 @@ int test_thread_mutex_nested(int num_thr
     return APR_SUCCESS;
 }
 
-int test_thread_mutex_timed(int num_threads)
+static int test_thread_mutex_timed(int num_threads)
 {
     apr_thread_t *t[MAX_THREADS];
     apr_status_t s[MAX_THREADS];