Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7496D18FA2 for ; Thu, 10 Dec 2015 12:02:46 +0000 (UTC) Received: (qmail 20223 invoked by uid 500); 10 Dec 2015 12:02:46 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 20184 invoked by uid 500); 10 Dec 2015 12:02:46 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 20173 invoked by uid 99); 10 Dec 2015 12:02:46 -0000 Received: from Unknown (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Dec 2015 12:02:46 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 95F79C151F for ; Thu, 10 Dec 2015 12:02:45 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.446 X-Spam-Level: X-Spam-Status: No, score=0.446 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-0.554] autolearn=disabled Received: from mx1-us-east.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id cbF-J9kOsveP for ; Thu, 10 Dec 2015 12:02:42 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with ESMTP id 456CD429C7 for ; Thu, 10 Dec 2015 12:02:42 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id AF50CE01AE for ; Thu, 10 Dec 2015 12:02:41 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id A84723A023D for ; Thu, 10 Dec 2015 12:02:41 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1719072 - /subversion/trunk/subversion/libsvn_delta/branch_compat.c Date: Thu, 10 Dec 2015 12:02:41 -0000 To: commits@subversion.apache.org From: julianfoad@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20151210120241.A84723A023D@svn01-us-west.apache.org> 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,