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/10/20 16:40:18 UTC

svn commit: r1709616 - /subversion/trunk/subversion/libsvn_fs_x/verify.c

Author: stefan2
Date: Tue Oct 20 14:40:18 2015
New Revision: 1709616

URL: http://svn.apache.org/viewvc?rev=1709616&view=rev
Log:
Follow-up to r1709614.

* subversion/libsvn_fs_x/verify.c
  (svn_fs_x__verify): Replace a few FSFS identifiers that slipped through.
                      Also remove a now unused local variable.

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

Modified: subversion/trunk/subversion/libsvn_fs_x/verify.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_fs_x/verify.c?rev=1709616&r1=1709615&r2=1709616&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_fs_x/verify.c (original)
+++ subversion/trunk/subversion/libsvn_fs_x/verify.c Tue Oct 20 14:40:18 2015
@@ -824,14 +824,12 @@ svn_fs_x__verify(svn_fs_t *fs,
                  void *cancel_baton,
                  apr_pool_t *scratch_pool)
 {
-  svn_fs_x__data_t *ffd = fs->fsap_data;
-
   /* Input validation. */
   if (! SVN_IS_VALID_REVNUM(start))
     start = 0;
   if (! SVN_IS_VALID_REVNUM(end))
     {
-      SVN_ERR(svn_fs_fs__youngest_rev(&end, fs, pool));
+      SVN_ERR(svn_fs_x__youngest_rev(&end, fs, scratch_pool));
     }
 
   SVN_ERR(svn_fs_x__ensure_revision_exists(start, fs, scratch_pool));