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/13 02:24:19 UTC

svn commit: r1651259 - /subversion/trunk/subversion/libsvn_fs_x/hotcopy.c

Author: stefan2
Date: Tue Jan 13 01:24:19 2015
New Revision: 1651259

URL: http://svn.apache.org/r1651259
Log:
* subversion/libsvn_fs_x/hotcopy.c
  (hotcopy_incremental_check_preconditions): Remove unused POOL parameter.
  (svn_fs_x__hotcopy_prepare_target): Update caller.

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

Modified: subversion/trunk/subversion/libsvn_fs_x/hotcopy.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_fs_x/hotcopy.c?rev=1651259&r1=1651258&r2=1651259&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_fs_x/hotcopy.c (original)
+++ subversion/trunk/subversion/libsvn_fs_x/hotcopy.c Tue Jan 13 01:24:19 2015
@@ -475,8 +475,7 @@ hotcopy_remove_revprop_files(svn_fs_t *d
  * hotcopy from SRC_FS. */
 static svn_error_t *
 hotcopy_incremental_check_preconditions(svn_fs_t *src_fs,
-                                        svn_fs_t *dst_fs,
-                                        apr_pool_t *pool)
+                                        svn_fs_t *dst_fs)
 {
   svn_fs_x__data_t *src_ffd = src_fs->fsap_data;
   svn_fs_x__data_t *dst_ffd = dst_fs->fsap_data;
@@ -952,8 +951,7 @@ svn_fs_x__hotcopy_prepare_target(svn_fs_
         {
           /* Check the existing repository. */
           SVN_ERR(svn_fs_x__open(dst_fs, dst_path, scratch_pool));
-          SVN_ERR(hotcopy_incremental_check_preconditions(src_fs, dst_fs,
-                                                          scratch_pool));
+          SVN_ERR(hotcopy_incremental_check_preconditions(src_fs, dst_fs));
         }
     }
   else