You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2010/06/12 16:18:08 UTC

svn commit: r954010 - /subversion/trunk/subversion/libsvn_wc/adm_ops.c

Author: rhuijben
Date: Sat Jun 12 14:18:07 2010
New Revision: 954010

URL: http://svn.apache.org/viewvc?rev=954010&view=rev
Log:
* subversion/libsvn_wc/adm_ops.c
  (svn_wc_add4): Add missing argument to svn_error_createf().

Suggested by: hwright

Modified:
    subversion/trunk/subversion/libsvn_wc/adm_ops.c

Modified: subversion/trunk/subversion/libsvn_wc/adm_ops.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/adm_ops.c?rev=954010&r1=954009&r2=954010&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/adm_ops.c (original)
+++ subversion/trunk/subversion/libsvn_wc/adm_ops.c Sat Jun 12 14:18:07 2010
@@ -1672,7 +1672,9 @@ svn_wc_add4(svn_wc_context_t *wc_ctx,
          trouble if we allow this. */
       return svn_error_createf(SVN_ERR_NODE_UNEXPECTED_KIND, NULL,
                                _("Can't schedule an addition of '%s'"
-                                 " below a not-directory node"));
+                                 " below a not-directory node"),
+                               svn_dirent_local_style(local_abspath,
+                                                   scratch_pool));
 
     if (!repos_root_url)
       {