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 2011/10/05 18:20:01 UTC

svn commit: r1179299 - /subversion/trunk/subversion/libsvn_client/log.c

Author: julianfoad
Date: Wed Oct  5 16:20:01 2011
New Revision: 1179299

URL: http://svn.apache.org/viewvc?rev=1179299&view=rev
Log:
* subversion/libsvn_client/log.c
  (pre_15_receiver): Remove two redundant type casts.

Modified:
    subversion/trunk/subversion/libsvn_client/log.c

Modified: subversion/trunk/subversion/libsvn_client/log.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/log.c?rev=1179299&r1=1179298&r2=1179299&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/log.c (original)
+++ subversion/trunk/subversion/libsvn_client/log.c Wed Oct  5 16:20:01 2011
@@ -211,8 +211,7 @@ pre_15_receiver(void *baton, svn_log_ent
                                   name, &value, pool));
           if (log_entry->revprops == NULL)
             log_entry->revprops = apr_hash_make(pool);
-          apr_hash_set(log_entry->revprops, (const void *)name,
-                       APR_HASH_KEY_STRING, (const void *)value);
+          apr_hash_set(log_entry->revprops, name, APR_HASH_KEY_STRING, value);
         }
       if (log_entry->revprops)
         {