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 10:30:37 UTC

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

Author: julianfoad
Date: Wed Mar  4 09:30:37 2015
New Revision: 1663908

URL: http://svn.apache.org/r1663908
Log:
* subversion/include/svn_hash.h
  (svn_hash_sets): Rename from svn_hash_gets, to fix 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=1663908&r1=1663907&r2=1663908&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_hash.h (original)
+++ subversion/trunk/subversion/include/svn_hash.h Wed Mar  4 09:30:37 2015
@@ -268,7 +268,7 @@ svn_hash__sets(apr_hash_t *ht, const cha
 #define svn_hash_sets(ht, key, val) \
             svn_hash__sets(ht, key, val)
 #else
-#define svn_hash_gets(ht, key) \
+#define svn_hash_sets(ht, key, val) \
             apr_hash_set(ht, svn_hash__key, APR_HASH_KEY_STRING, val)
 #endif