Author: rhuijben
Date: Tue Dec 10 15:53:47 2013
New Revision: 1549874

URL: http://svn.apache.org/r1549874
Log:
* subversion/libsvn_client/prop_commands.c
  (recursive_proplist_receiver): Resolve warning by removing const from
    variable that should have been defined as const.

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

Modified: subversion/trunk/subversion/libsvn_client/prop_commands.c
URL: 
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/prop_commands.c?rev=1549874&r1=1549873&r2=1549874&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/prop_commands.c (original)
+++ subversion/trunk/subversion/libsvn_client/prop_commands.c Tue Dec 10 
15:53:47 2013
@@ -1213,7 +1213,7 @@ recursive_proplist_receiver(void *baton,
 {
   struct recursive_proplist_receiver_baton *b = baton;
   const char *path;
-  const apr_array_header_t *iprops = NULL;
+  apr_array_header_t *iprops = NULL;
 
   if (b->iprops
       && ! strcmp(local_abspath, b->anchor_abspath))


Reply via email to