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

Re: svn commit: r11756 - trunk/subversion/libsvn_wc

From: <kfogel_at_collab.net>
Date: 2004-11-05 15:24:09 CET

breser@tigris.org writes:
> --- trunk/subversion/libsvn_wc/questions.c (original)
> +++ trunk/subversion/libsvn_wc/questions.c Thu Nov 4 22:19:51 2004
> @@ -103,7 +103,7 @@
> (SVN_ERR_WC_UNSUPPORTED_FORMAT, NULL,
> _("Working copy format of '%s' is too old (%d); "
> "please check out your working copy again"),
> - path, wc_format);
> + svn_path_local_style(path,pool), wc_format);
> }
> else if (wc_format > SVN_WC__VERSION)
> {
> @@ -111,7 +111,7 @@
> (SVN_ERR_WC_UNSUPPORTED_FORMAT, NULL,
> _("This client is too old to work with working copy '%s'; "
> "please get a newer Subversion client"),
> - path);
> + svn_path_local_style(path,pool));
> }
>
> return SVN_NO_ERROR;

Not a huge deal, but note that the local style in this file is
space-between-function-name-and-opening-paren.

-K

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Fri Nov 5 17:18:37 2004

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.