You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by hw...@apache.org on 2010/05/19 23:28:44 UTC

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

Author: hwright
Date: Wed May 19 21:28:44 2010
New Revision: 946408

URL: http://svn.apache.org/viewvc?rev=946408&view=rev
Log:
* subversion/libsvn_wc/wc_db.c:
  Wrap a couple of long lines.

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=946408&r1=946407&r2=946408&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/wc_db.c (original)
+++ subversion/trunk/subversion/libsvn_wc/wc_db.c Wed May 19 21:28:44 2010
@@ -1770,7 +1770,8 @@ svn_wc__db_base_get_dav_cache(apr_hash_t
                                  STMT_SELECT_BASE_DAV_CACHE, scratch_pool));
   SVN_ERR(svn_sqlite__step(&have_row, stmt));
   if (!have_row)
-    return svn_error_createf(SVN_ERR_WC_PATH_NOT_FOUND, svn_sqlite__reset(stmt),
+    return svn_error_createf(SVN_ERR_WC_PATH_NOT_FOUND,
+                             svn_sqlite__reset(stmt),
                              _("The node '%s' was not found."),
                              svn_dirent_local_style(local_abspath,
                                                     scratch_pool));
@@ -2002,7 +2003,8 @@ svn_wc__db_pristine_remove(svn_wc__db_t 
 
     /* ### Transitional: look for references to its MD-5 as well. */
     SVN_ERR(svn_wc__db_pristine_get_md5(&md5_checksum, db, wri_abspath,
-                                        sha1_checksum, scratch_pool, scratch_pool));
+                                        sha1_checksum, scratch_pool,
+                                        scratch_pool));
 
     SVN_ERR(svn_sqlite__get_statement(&stmt, pdh->wcroot->sdb,
                                       STMT_SELECT_ANY_PRISTINE_REFERENCE));