[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn commit: r1037738 - in /subversion/trunk/subversion: include/ libsvn_client/ svn/ tests/cmdline/ tests/cmdline/svntest/

From: Daniel Shahaf <d.s_at_daniel.shahaf.name>
Date: Tue, 23 Nov 2010 03:10:36 +0200

cmpilato_at_apache.org wrote on Mon, Nov 22, 2010 at 14:42:06 -0000:
> +++ subversion/trunk/subversion/svn/update-cmd.c Mon Nov 22 14:42:05 2010
> @@ -39,6 +39,42 @@
>
> /*** Code. ***/
>
> +/* Print an update summary when there's more than one target to report
> + about. */
> +static svn_error_t *
> +print_update_summary(apr_array_header_t *targets,
> + apr_array_header_t *result_revs,
> + apr_pool_t *scratch_pool)
> +{
> + int i;
> +
> + if (targets->nelts < 2)
> + return SVN_NO_ERROR;
> +
> + SVN_ERR(svn_cmdline_printf(scratch_pool, _("Summary of updates:\n")));
> +
> + for (i = 0; i < targets->nelts; i++)
> + {
> + const char *path = APR_ARRAY_IDX(targets, i, const char *);
> +
> + if (i < result_revs->nelts)
> + {
> + svn_revnum_t rev = APR_ARRAY_IDX(result_revs, i, const char *);
> +

subversion/svn/update-cmd.c: In function ‘print_update_summary’:
subversion/svn/update-cmd.c:62: warning: initialization makes integer from pointer without a cast
Received on 2010-11-23 02:15:56 CET

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.