Author: stsp
Date: Wed Nov 27 14:58:48 2013
New Revision: 1546056
URL: http://svn.apache.org/r1546056
Log:
* subversion/libsvn_repos/dump.c
(svn_repos_verify_fs3): Reduce scope of a local variable.
Modified:
subversion/branches/verify-keep-going/subversion/libsvn_repos/dump.c
Modified: subversion/branches/verify-keep-going/subversion/libsvn_repos/dump.c
URL:
http://svn.apache.org/viewvc/subversion/branches/verify-keep-going/subversion/libsvn_repos/dump.c?rev=1546056&r1=1546055&r2=1546056&view=diff
==============================================================================
--- subversion/branches/verify-keep-going/subversion/libsvn_repos/dump.c
(original)
+++ subversion/branches/verify-keep-going/subversion/libsvn_repos/dump.c Wed
Nov 27 14:58:48 2013
@@ -2231,7 +2231,6 @@ svn_repos_verify_fs3(svn_repos_t *repos,
struct verify_fs2_notify_func_baton_t *verify_notify_baton = NULL;
svn_error_t *err;
apr_array_header_t *error_summary;
- int i;
svn_boolean_t found_corruption = FALSE;
svn_cache__t *verified_dirents_cache = NULL;
@@ -2348,6 +2347,8 @@ svn_repos_verify_fs3(svn_repos_t *repos,
/* Show the summary. */
if (notify_func && keep_going && found_corruption)
{
+ int i;
+
notify_verification_summary(err, notify_func, notify_baton, iterpool);
for (i = 0; i < error_summary->nelts; i++)
{