You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ko...@apache.org on 2017/02/21 09:59:47 UTC

svn commit: r1783859 - /subversion/trunk/tools/client-side/svn-mergeinfo-normalizer/wc_mergeinfo.c

Author: kotkov
Date: Tue Feb 21 09:59:47 2017
New Revision: 1783859

URL: http://svn.apache.org/viewvc?rev=1783859&view=rev
Log:
Following up on r1777345, unbreak build of the svn-mergeinfo-normalizer
tool on Windows.

* tools/client-side/svn-mergeinfo-normalizer/wc_mergeinfo.c
  (svn_min__sibling_ranges): Call svn_hash_sets() instead of svn_hash__sets()
   that is only defined with SVN_DEBUG.

Modified:
    subversion/trunk/tools/client-side/svn-mergeinfo-normalizer/wc_mergeinfo.c

Modified: subversion/trunk/tools/client-side/svn-mergeinfo-normalizer/wc_mergeinfo.c
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/client-side/svn-mergeinfo-normalizer/wc_mergeinfo.c?rev=1783859&r1=1783858&r2=1783859&view=diff
==============================================================================
--- subversion/trunk/tools/client-side/svn-mergeinfo-normalizer/wc_mergeinfo.c (original)
+++ subversion/trunk/tools/client-side/svn-mergeinfo-normalizer/wc_mergeinfo.c Tue Feb 21 09:59:47 2017
@@ -373,8 +373,8 @@ svn_min__sibling_ranges(apr_hash_t **sib
 
               if (common->nelts)
                 {
-                  svn_hash__sets(result, apr_pstrdup(result_pool, path),
-                                 common);
+                  svn_hash_sets(result, apr_pstrdup(result_pool, path),
+                                common);
                 }
             }
         }