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

Re: svn commit: rev 7837 - trunk/subversion/libsvn_wc

From: C. Michael Pilato <cmpilato_at_collab.net>
Date: 2003-11-24 19:17:21 CET

sussman@tigris.org writes:

> Modified: trunk/subversion/libsvn_wc/entries.c
> ==============================================================================
> --- trunk/subversion/libsvn_wc/entries.c (original)
> +++ trunk/subversion/libsvn_wc/entries.c Mon Nov 24 12:04:46 2003
> @@ -1364,7 +1364,8 @@
> return SVN_NO_ERROR;
>
> default:
> - return svn_error_createf (SVN_ERR_WC_SCHEDULE_CONFLICT, NULL, NULL);
> + return svn_error_createf (SVN_ERR_WC_SCHEDULE_CONFLICT, NULL,
> + "Illegal scheduling operation requested.");

Sheesh, redundancy. How about just:

  -return svn_error_createf (SVN_ERR_WC_SCHEDULE_CONFLICT, NULL, NULL);
  +return svn_error_create (SVN_ERR_WC_SCHEDULE_CONFLICT, NULL, NULL);

?

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Mon Nov 24 19:18:42 2003

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.