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 2012/05/21 12:16:43 UTC

svn commit: r1340956 - /subversion/trunk/subversion/libsvn_fs_fs/fs_fs.c

Author: stefan2
Date: Mon May 21 10:16:42 2012
New Revision: 1340956

URL: http://svn.apache.org/viewvc?rev=1340956&view=rev
Log:
* subversion/libsvn_fs_fs/fs_fs.c
  (fetch_all_changes): eliminate cast

Suggested by: gstein

Modified:
    subversion/trunk/subversion/libsvn_fs_fs/fs_fs.c

Modified: subversion/trunk/subversion/libsvn_fs_fs/fs_fs.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_fs_fs/fs_fs.c?rev=1340956&r1=1340955&r2=1340956&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_fs_fs/fs_fs.c (original)
+++ subversion/trunk/subversion/libsvn_fs_fs/fs_fs.c Mon May 21 10:16:42 2012
@@ -4865,9 +4865,9 @@ fetch_all_changes(apr_hash_t *changed_pa
                hi = apr_hash_next(hi))
             {
               /* KEY is the path. */
-              const char *path;
+              const void *path;
               apr_ssize_t klen;
-              apr_hash_this(hi, (const void **)&path, &klen, NULL);
+              apr_hash_this(hi, &path, &klen, NULL);
 
               /* If we come across a child of our path, remove it.
                  Call svn_dirent_is_child only if there is a chance that