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/03/02 10:47:04 UTC

svn commit: r1663232 - /subversion/branches/fsx-1.10/subversion/libsvn_fs_x/lock.c

Author: stefan2
Date: Mon Mar  2 09:47:04 2015
New Revision: 1663232

URL: http://svn.apache.org/r1663232
Log:
On the fsx-1.10 branch:
More code formatting fixes. No functional change.

* subversion/libsvn_fs_x/lock.c
  (err_corrupt_lockfile,
   lock_body,
   unlock_body): Put each parameter on a separate line.

Modified:
    subversion/branches/fsx-1.10/subversion/libsvn_fs_x/lock.c

Modified: subversion/branches/fsx-1.10/subversion/libsvn_fs_x/lock.c
URL: http://svn.apache.org/viewvc/subversion/branches/fsx-1.10/subversion/libsvn_fs_x/lock.c?rev=1663232&r1=1663231&r2=1663232&view=diff
==============================================================================
--- subversion/branches/fsx-1.10/subversion/libsvn_fs_x/lock.c (original)
+++ subversion/branches/fsx-1.10/subversion/libsvn_fs_x/lock.c Mon Mar  2 09:47:04 2015
@@ -113,7 +113,8 @@ hash_fetch(apr_hash_t *hash,
 
 /* SVN_ERR_FS_CORRUPT: the lockfile for PATH in FS is corrupt.  */
 static svn_error_t *
-err_corrupt_lockfile(const char *fs_path, const char *path)
+err_corrupt_lockfile(const char *fs_path,
+                     const char *path)
 {
   return
     svn_error_createf(
@@ -866,7 +867,8 @@ typedef struct lock_info_t {
    type, and assumes that the write lock is held.
  */
 static svn_error_t *
-lock_body(void *baton, apr_pool_t *pool)
+lock_body(void *baton,
+          apr_pool_t *pool)
 {
   lock_baton_t *lb = baton;
   svn_fs_root_t *root;
@@ -1068,7 +1070,8 @@ typedef struct unlock_info_t {
    type, and assumes that the write lock is held.
  */
 static svn_error_t *
-unlock_body(void *baton, apr_pool_t *pool)
+unlock_body(void *baton,
+            apr_pool_t *pool)
 {
   unlock_baton_t *ub = baton;
   svn_fs_root_t *root;