You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by "C. Michael Pilato" <cm...@collab.net> on 2003/11/24 18:17:21 UTC

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

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