Author: stefan2 Date: Fri Aug 2 09:33:09 2013 New Revision: 1509588 URL: http://svn.apache.org/r1509588 Log: On the fsx branch: Fix a compiler warning caused by a forgotten type update.
* subversion/libsvn_fs_x/cached_data.c (build_rep_list): use the correct type Patch by: Masaru Tsuchiyama <[email protected]> Modified: subversion/branches/fsx/subversion/libsvn_fs_x/cached_data.c Modified: subversion/branches/fsx/subversion/libsvn_fs_x/cached_data.c URL: http://svn.apache.org/viewvc/subversion/branches/fsx/subversion/libsvn_fs_x/cached_data.c?rev=1509588&r1=1509587&r2=1509588&view=diff ============================================================================== --- subversion/branches/fsx/subversion/libsvn_fs_x/cached_data.c (original) +++ subversion/branches/fsx/subversion/libsvn_fs_x/cached_data.c Fri Aug 2 09:33:09 2013 @@ -1039,7 +1039,7 @@ build_rep_list(apr_array_header_t **list svn_boolean_t is_cached = FALSE; shared_file_t *shared_file = NULL; - *list = apr_array_make(pool, 1, sizeof(struct rep_state *)); + *list = apr_array_make(pool, 1, sizeof(rep_state_t *)); rep = *first_rep; /* for the top-level rep, we need the rep_args */
