You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2013/11/28 19:51:39 UTC

svn commit: r1546448 - /subversion/trunk/subversion/libsvn_fs/fs-loader.c

Author: stefan2
Date: Thu Nov 28 18:51:39 2013
New Revision: 1546448

URL: http://svn.apache.org/r1546448
Log:
* subversion/libsvn_fs/fs-loader.c
  (common_pool_lock): Make this global variable static like all the others.

Modified:
    subversion/trunk/subversion/libsvn_fs/fs-loader.c

Modified: subversion/trunk/subversion/libsvn_fs/fs-loader.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_fs/fs-loader.c?rev=1546448&r1=1546447&r2=1546448&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_fs/fs-loader.c (original)
+++ subversion/trunk/subversion/libsvn_fs/fs-loader.c Thu Nov 28 18:51:39 2013
@@ -64,7 +64,7 @@
 /* A pool common to all FS objects.  See the documentation on the
    open/create functions in fs-loader.h and for svn_fs_initialize(). */
 static apr_pool_t *common_pool;
-svn_mutex__t *common_pool_lock;
+static svn_mutex__t *common_pool_lock;
 static svn_atomic_t common_pool_initialized = FALSE;