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 2014/01/26 01:16:27 UTC

svn commit: r1561428 - /subversion/trunk/subversion/libsvn_fs_fs/hotcopy.c

Author: stefan2
Date: Sun Jan 26 00:16:27 2014
New Revision: 1561428

URL: http://svn.apache.org/r1561428
Log:
Follow-up to r1561427: Fix compiler warning.

* subversion/libsvn_fs_fs/hotcopy.c
  (hotcopy_body): Disambiguate condition code.

Modified:
    subversion/trunk/subversion/libsvn_fs_fs/hotcopy.c

Modified: subversion/trunk/subversion/libsvn_fs_fs/hotcopy.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_fs_fs/hotcopy.c?rev=1561428&r1=1561427&r2=1561428&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_fs_fs/hotcopy.c (original)
+++ subversion/trunk/subversion/libsvn_fs_fs/hotcopy.c Sun Jan 26 00:16:27 2014
@@ -885,8 +885,8 @@ hotcopy_body(void *baton, apr_pool_t *po
        * the latest IDs.  Because that's too expensive, we don't checkpoint
        * pre-1.4 repositories.
        */
-      if (!max_files_per_dir || rev % max_files_per_dir == 0 &&
-          dst_ffd->format >= SVN_FS_FS__MIN_NO_GLOBAL_IDS_FORMAT)
+      if (   (!max_files_per_dir || rev % max_files_per_dir == 0)
+          && dst_ffd->format >= SVN_FS_FS__MIN_NO_GLOBAL_IDS_FORMAT)
         SVN_ERR(hotcopy_update_current(&dst_youngest, dst_fs, rev, iterpool));
     }
   svn_pool_destroy(iterpool);