You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2010/04/12 22:54:33 UTC

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

Author: dannas
Date: Mon Apr 12 20:54:33 2010
New Revision: 933405

URL: http://svn.apache.org/viewvc?rev=933405&view=rev
Log:
Follow-up to r923571. Update one caller I missed in the previous
commit.

* subversion/libsvn_wc/deprecated.c
  (svn_wc_status2): Use svn_wc__status2_from_3().

Suggested by: gstein
Approved by: gstein

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=933405&r1=933404&r2=933405&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/deprecated.c (original)
+++ subversion/trunk/subversion/libsvn_wc/deprecated.c Mon Apr 12 20:54:33 2010
@@ -2556,7 +2556,7 @@ svn_wc_status2(svn_wc_status2_t **status
                                          pool));
 
   SVN_ERR(svn_wc_status3(&stat3, wc_ctx, local_abspath, pool, pool));
-  *status = (svn_wc_status2_t *) stat3;
+  *status = svn_wc__status2_from_3(stat3, pool);
 
   return svn_error_return(svn_wc_context_destroy(wc_ctx));
 }