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 2015/01/06 17:45:03 UTC

svn commit: r1649872 - /subversion/trunk/subversion/libsvn_fs_x/fs.c

Author: stefan2
Date: Tue Jan  6 16:45:03 2015
New Revision: 1649872

URL: http://svn.apache.org/r1649872
Log:
Function signatures in FSX should use consistent formatting with the result
type and each parameter on a separate line.  Fix this for fs.c .
No functional change.

* subversion/libsvn_fs_x/fs.c
  (x_serialized_init): One line per parameter and the return type
                       on a separate line.

Modified:
    subversion/trunk/subversion/libsvn_fs_x/fs.c

Modified: subversion/trunk/subversion/libsvn_fs_x/fs.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_fs_x/fs.c?rev=1649872&r1=1649871&r2=1649872&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_fs_x/fs.c (original)
+++ subversion/trunk/subversion/libsvn_fs_x/fs.c Tue Jan  6 16:45:03 2015
@@ -61,7 +61,9 @@
    instances.  The caller is responsible of ensuring that serialization.
    Use COMMON_POOL for process-wide and POOL for temporary allocations. */
 static svn_error_t *
-x_serialized_init(svn_fs_t *fs, apr_pool_t *common_pool, apr_pool_t *pool)
+x_serialized_init(svn_fs_t *fs,
+                  apr_pool_t *common_pool,
+                  apr_pool_t *pool)
 {
   svn_fs_x__data_t *ffd = fs->fsap_data;
   const char *key;