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 2011/04/17 20:25:47 UTC

svn commit: r1094182 - /subversion/trunk/subversion/libsvn_wc/deprecated.c

Author: rhuijben
Date: Sun Apr 17 18:25:47 2011
New Revision: 1094182

URL: http://svn.apache.org/viewvc?rev=1094182&view=rev
Log:
Fix a function reference that my compiler didn't find without cleaning my
build environment.

* subversion/libsvn_wc/deprecated.c
  (svn_wc_process_committed_queue): Fix compilation.

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

Modified: subversion/trunk/subversion/libsvn_wc/deprecated.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/deprecated.c?rev=1094182&r1=1094181&r2=1094182&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/deprecated.c (original)
+++ subversion/trunk/subversion/libsvn_wc/deprecated.c Sun Apr 17 18:25:47 2011
@@ -645,7 +645,8 @@ svn_wc_process_committed_queue(svn_wc_co
                                          svn_wc__adm_get_db(adm_access),
                                          pool));
   SVN_ERR(svn_wc_process_committed_queue2(queue, wc_ctx, new_revnum,
-                                          rev_date, rev_author, pool));
+                                          rev_date, rev_author,
+                                          NULL, NULL, pool));
   SVN_ERR(svn_wc_context_destroy(wc_ctx));
 
   return SVN_NO_ERROR;