You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2011/01/14 00:51:24 UTC

svn commit: r1058800 - /subversion/trunk/subversion/libsvn_wc/wc_db.c

Author: julianfoad
Date: Thu Jan 13 23:51:24 2011
New Revision: 1058800

URL: http://svn.apache.org/viewvc?rev=1058800&view=rev
Log:
* subversion/libsvn_wc/wc_db.c
  (pristine_remove_if_unreferenced, pristine_cleanup_wcroot): White space
    fixes, following r1058667.

Modified:
    subversion/trunk/subversion/libsvn_wc/wc_db.c

Modified: subversion/trunk/subversion/libsvn_wc/wc_db.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/wc_db.c?rev=1058800&r1=1058799&r2=1058800&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/wc_db.c (original)
+++ subversion/trunk/subversion/libsvn_wc/wc_db.c Thu Jan 13 23:51:24 2011
@@ -2494,8 +2494,8 @@ svn_wc__db_pristine_get_sha1(const svn_c
  * database row and the file on disk. */
 static svn_error_t *
 pristine_remove_if_unreferenced(svn_wc__db_wcroot_t *wcroot,
-                const svn_checksum_t *sha1_checksum,
-                apr_pool_t *scratch_pool)
+                                const svn_checksum_t *sha1_checksum,
+                                apr_pool_t *scratch_pool)
 {
   svn_sqlite__stmt_t *stmt;
   const char *pristine_abspath;
@@ -2587,7 +2587,8 @@ pristine_cleanup_wcroot(svn_wc__db_wcroo
 
       SVN_ERR(svn_sqlite__column_checksum(&sha1_checksum, stmt, 0,
                                           scratch_pool));
-      SVN_ERR(pristine_remove_if_unreferenced(wcroot, sha1_checksum, scratch_pool));
+      SVN_ERR(pristine_remove_if_unreferenced(wcroot, sha1_checksum,
+                                              scratch_pool));
     }
   SVN_ERR(svn_sqlite__reset(stmt));