Author: dsahlberg Date: Sat Oct 19 12:00:43 2024 New Revision: 1921423 URL: http://svn.apache.org/viewvc?rev=1921423&view=rev Log: Make sure argument names in declaration matches order in definition.
The do_logs function is internal and the call sites matches the order in the definition. * subversion/libsvn_repos/log.c (do_logs declaration): Change the order of include_merged_revisions and subtractive_merge Found by: Franz Sirl <franz.sirl-ker...@lauterbach.com> https://lists.apache.org/thread/2cxjwcnyxplktx7od82pod24htd2f179 Modified: subversion/trunk/subversion/libsvn_repos/log.c Modified: subversion/trunk/subversion/libsvn_repos/log.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_repos/log.c?rev=1921423&r1=1921422&r2=1921423&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_repos/log.c (original) +++ subversion/trunk/subversion/libsvn_repos/log.c Sat Oct 19 12:00:43 2024 @@ -1719,8 +1719,8 @@ do_logs(svn_fs_t *fs, int limit, svn_boolean_t strict_node_history, svn_boolean_t include_merged_revisions, - svn_boolean_t handling_merged_revisions, svn_boolean_t subtractive_merge, + svn_boolean_t handling_merged_revisions, svn_boolean_t ignore_missing_locations, const apr_array_header_t *revprops, svn_boolean_t descending_order,