Author: gstein
Date: Wed Apr 21 10:23:38 2010
New Revision: 936244

URL: http://svn.apache.org/viewvc?rev=936244&view=rev
Log:
Remove some preprocessor foo within a macro invocation, as it is not
portable.

* subversion/libsvn_wc/wc_db.c:
  (svn_wc__db_scan_deletion): fix preprocessor breakage

Found by: rhuijben

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=936244&r1=936243&r2=936244&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/wc_db.c (original)
+++ subversion/trunk/subversion/libsvn_wc/wc_db.c Wed Apr 21 10:23:38 2010
@@ -5632,7 +5632,7 @@ svn_wc__db_scan_deletion(const char **ba
           /* Only "normal" and "not-present" are allowed.  */
           SVN_ERR_ASSERT(base_presence == svn_wc__db_status_normal
                          || base_presence == svn_wc__db_status_not_present
-#if 1
+
                          /* ### there are cases where the BASE node is
                             ### marked as incomplete. we should treat this
                             ### as a "normal" node for the purposes of
@@ -5644,7 +5644,6 @@ svn_wc__db_scan_deletion(const char **ba
                             ###   update_tests 53
                          */
                          || base_presence == svn_wc__db_status_incomplete
-#endif
                          );
 
 #if 1


Reply via email to