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/03/04 11:12:30 UTC

svn commit: r1663917 - /subversion/trunk/subversion/include/svn_hash.h

Author: julianfoad
Date: Wed Mar  4 10:12:30 2015
New Revision: 1663917

URL: http://svn.apache.org/r1663917
Log:
* subversion/include/svn_hash.h
  (svn_hash_sets): Fix remaining breakage from r1663896.

Modified:
    subversion/trunk/subversion/include/svn_hash.h

Modified: subversion/trunk/subversion/include/svn_hash.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_hash.h?rev=1663917&r1=1663916&r2=1663917&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_hash.h (original)
+++ subversion/trunk/subversion/include/svn_hash.h Wed Mar  4 10:12:30 2015
@@ -269,7 +269,7 @@ svn_hash__sets(apr_hash_t *ht, const cha
             svn_hash__sets(ht, key, val)
 #else
 #define svn_hash_sets(ht, key, val) \
-            apr_hash_set(ht, svn_hash__key, APR_HASH_KEY_STRING, val)
+            apr_hash_set(ht, key, APR_HASH_KEY_STRING, val)
 #endif
 
 /** @} */