You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2010/04/22 16:25:00 UTC

svn commit: r936863 - /subversion/trunk/subversion/libsvn_subr/subst.c

Author: stsp
Date: Thu Apr 22 14:24:59 2010
New Revision: 936863

URL: http://svn.apache.org/viewvc?rev=936863&view=rev
Log:
* subversion/libsvn_subr/subst.c
  (keywords_hash_deep_copy): Un-constify the KEYWORDS parameter again.
   As the compiler noted, we need to pass this on in non-const form.

Modified:
    subversion/trunk/subversion/libsvn_subr/subst.c

Modified: subversion/trunk/subversion/libsvn_subr/subst.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_subr/subst.c?rev=936863&r1=936862&r2=936863&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_subr/subst.c (original)
+++ subversion/trunk/subversion/libsvn_subr/subst.c Thu Apr 22 14:24:59 2010
@@ -842,7 +842,7 @@ create_translation_baton(const char *eol
 /* Create a deep copy of the KEYWORDS hash, allocated in RESULT_POOL,
  * and return a pointer to it. */
 static apr_hash_t *
-keywords_hash_deep_copy(const apr_hash_t *keywords, apr_pool_t *result_pool)
+keywords_hash_deep_copy(apr_hash_t *keywords, apr_pool_t *result_pool)
 {
   apr_hash_t *copy = apr_hash_make(result_pool);
   apr_hash_index_t *hi;