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/07/22 13:37:49 UTC

svn commit: r1505663 - /subversion/branches/fsfs-improvements/subversion/libsvn_fs_fs/revprops.c

Author: stefan2
Date: Mon Jul 22 11:37:48 2013
New Revision: 1505663

URL: http://svn.apache.org/r1505663
Log:
On the fsfs-improvements branch: reformat some code to match fsfs-format7.
No functional change.

* subversion/libsvn_fs_fs/revprops.c
  (read_pack_revprop,
   svn_fs_fs__packed_revprop_available): minor reformatting

Modified:
    subversion/branches/fsfs-improvements/subversion/libsvn_fs_fs/revprops.c

Modified: subversion/branches/fsfs-improvements/subversion/libsvn_fs_fs/revprops.c
URL: http://svn.apache.org/viewvc/subversion/branches/fsfs-improvements/subversion/libsvn_fs_fs/revprops.c?rev=1505663&r1=1505662&r2=1505663&view=diff
==============================================================================
--- subversion/branches/fsfs-improvements/subversion/libsvn_fs_fs/revprops.c (original)
+++ subversion/branches/fsfs-improvements/subversion/libsvn_fs_fs/revprops.c Mon Jul 22 11:37:48 2013
@@ -853,7 +853,7 @@ read_pack_revprop(packed_revprops_t **re
   /* try to read the packed revprops. This may require retries if we have
    * concurrent writers. */
   for (i = 0;
-       i < SVN_FS_FS__RECOVERABLE_RETRY_COUNT  && !result->packed_revprops;
+       i < SVN_FS_FS__RECOVERABLE_RETRY_COUNT && !result->packed_revprops;
        ++i)
     {
       const char *file_path;
@@ -1440,7 +1440,8 @@ svn_fs_fs__packed_revprop_available(svn_
   svn_stringbuf_t *content = NULL;
 
   /* try to read the manifest file */
-  const char *folder = svn_fs_fs__path_revprops_pack_shard(fs, revision, pool);
+  const char *folder
+    = svn_fs_fs__path_revprops_pack_shard(fs, revision, pool);
   const char *manifest_path = svn_dirent_join(folder, PATH_MANIFEST, pool);
 
   svn_error_t *err = svn_fs_fs__try_stringbuf_from_file(&content,