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 2015/12/10 13:02:41 UTC

svn commit: r1719072 - /subversion/trunk/subversion/libsvn_delta/branch_compat.c

Author: julianfoad
Date: Thu Dec 10 12:02:41 2015
New Revision: 1719072

URL: http://svn.apache.org/viewvc?rev=1719072&view=rev
Log:
Enable the debug code also in release builds, as the buildbots are doing
release builds. A follow-up to r1719067.

* subversion/libsvn_delta/branch_compat.c
  (change_node_str): Don't make debugging info conditional on SVN_DEBUG.

Modified:
    subversion/trunk/subversion/libsvn_delta/branch_compat.c

Modified: subversion/trunk/subversion/libsvn_delta/branch_compat.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_delta/branch_compat.c?rev=1719072&r1=1719071&r2=1719072&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_delta/branch_compat.c (original)
+++ subversion/trunk/subversion/libsvn_delta/branch_compat.c Thu Dec 10 12:02:41 2015
@@ -290,8 +290,6 @@ typedef struct change_node_t
 #endif
 } change_node_t;
 
-#ifdef SVN_DEBUG
-
 /* Return a string representation of CHANGE. */
 static const char *
 change_node_str(change_node_t *change,
@@ -315,8 +313,6 @@ change_node_str(change_node_t *change,
   return str;
 }
 
-#endif
-
 /* Check whether RELPATH is known to exist, known to not exist, or unknown. */
 static svn_tristate_t
 check_existence(apr_hash_t *changes,