blair@tigris.org wrote:
> Author: blair
> Date: Thu May 31 11:18:50 2007
> New Revision: 25240
>
> Log:
> * subversion/include/svn_repos.h:
> Style fix, associate remove the space between the * and the function
> name to match the rest of the file.
>
>
> Modified:
> trunk/subversion/include/svn_repos.h
>
> Modified: trunk/subversion/include/svn_repos.h
> URL: http://svn.collab.net/viewvc/svn/trunk/subversion/include/svn_repos.h?pathrev=25240&r1=25239&r2=25240
> ==============================================================================
> --- trunk/subversion/include/svn_repos.h (original)
> +++ trunk/subversion/include/svn_repos.h Thu May 31 11:18:50 2007
> @@ -228,10 +228,10 @@
> * means deleting copied, unused logfiles for a Berkeley DB source
> * repository.
> */
> -svn_error_t * svn_repos_hotcopy(const char *src_path,
> - const char *dst_path,
> - svn_boolean_t clean_logs,
> - apr_pool_t *pool);
> +svn_error_t *svn_repos_hotcopy(const char *src_path,
> + const char *dst_path,
> + svn_boolean_t clean_logs,
> + apr_pool_t *pool);
Actually, I thought our style would dictate:
svn_error_t *
svn_repos_hotcopy(const char *src_path,
const char *dst_path,
svn_boolean_t clean_logs,
apr_pool_t *pool);
But, I don't think that's followed very closely in some places.
-Hyrum
Received on Thu May 31 20:28:05 2007