You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by cm...@apache.org on 2010/03/08 22:32:34 UTC

svn commit: r920524 - /subversion/trunk/subversion/libsvn_wc/adm_ops.c

Author: cmpilato
Date: Mon Mar  8 21:32:34 2010
New Revision: 920524

URL: http://svn.apache.org/viewvc?rev=920524&view=rev
Log:
* subversion/libsvn_wc/adm_ops.c
  (mark_tree_deleted): Oops!  Remove unnecessary local variable (and
    population thereof) added in r920522.

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

Modified: subversion/trunk/subversion/libsvn_wc/adm_ops.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/adm_ops.c?rev=920524&r1=920523&r2=920524&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/adm_ops.c (original)
+++ subversion/trunk/subversion/libsvn_wc/adm_ops.c Mon Mar  8 21:32:34 2010
@@ -807,7 +807,6 @@
   apr_pool_t *iterpool = svn_pool_create(pool);
   const apr_array_header_t *children;
   svn_wc__db_status_t status;
-  svn_boolean_t base_shadowed;
   int i;
 
   /* Read the entries file for this directory. */
@@ -859,8 +858,8 @@
   /* Handle directories now, after handling their kiddos. */
   SVN_ERR(svn_wc__db_read_info(&status, NULL, NULL, NULL, NULL, NULL, NULL,
                                NULL, NULL, NULL, NULL, NULL, NULL, NULL,
-                               NULL, NULL, NULL, NULL, NULL, NULL, NULL,
-                               &base_shadowed, NULL, NULL,
+                               NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
+                               NULL, NULL,
                                db, dir_abspath, iterpool, iterpool));
   SVN_ERR(svn_wc__db_temp_op_delete(db, dir_abspath, iterpool));
   if (keep_local)