Author: julianfoad
Date: Mon May 16 10:46:07 2011
New Revision: 1103685

URL: http://svn.apache.org/viewvc?rev=1103685&view=rev
Log:
* subversion/libsvn_wc/update_editor.c
  (make_editor): Constify an array to avoid pointer qualifier mismatch.

Modified:
    subversion/trunk/subversion/libsvn_wc/update_editor.c

Modified: subversion/trunk/subversion/libsvn_wc/update_editor.c
URL: 
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/update_editor.c?rev=1103685&r1=1103684&r2=1103685&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/update_editor.c (original)
+++ subversion/trunk/subversion/libsvn_wc/update_editor.c Mon May 16 10:46:07 
2011
@@ -4514,7 +4514,7 @@ make_editor(svn_revnum_t *target_revisio
               /* Worst case scenario of issue #3569 fix: We have to do the
                  same for all existing subdirs, but then we check for
                  svn_depth_empty. */
-              apr_array_header_t *children;
+              const apr_array_header_t *children;
               apr_pool_t *iterpool = svn_pool_create(scratch_pool);
               int i;
               SVN_ERR(svn_wc__db_base_get_children(&children, db,


Reply via email to