You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by cm...@apache.org on 2010/11/10 16:52:00 UTC

svn commit: r1033541 - /subversion/trunk/subversion/svn/cl.h

Author: cmpilato
Date: Wed Nov 10 15:52:00 2010
New Revision: 1033541

URL: http://svn.apache.org/viewvc?rev=1033541&view=rev
Log:
* subversion/svn/cl.h
  (struct svn_cl__check_externals_failed_notify_baton): Fix some
    mismatched members and comments.

Reported by: julianfoad

Modified:
    subversion/trunk/subversion/svn/cl.h

Modified: subversion/trunk/subversion/svn/cl.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/cl.h?rev=1033541&r1=1033540&r2=1033541&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/cl.h (original)
+++ subversion/trunk/subversion/svn/cl.h Wed Nov 10 15:52:00 2010
@@ -572,8 +572,8 @@ svn_cl__notifier_mark_export(void *baton
 /* Baton for use with svn_cl__check_externals_failed_notify_wrapper(). */
 struct svn_cl__check_externals_failed_notify_baton
 {
-  void *wrapped_baton;                /* The "real" notify_func2. */
-  svn_wc_notify_func2_t wrapped_func; /* The "real" notify_func2 baton. */
+  svn_wc_notify_func2_t wrapped_func; /* The "real" notify_func2. */
+  void *wrapped_baton;                /* The "real" notify_func2 baton. */
   svn_boolean_t had_externals_error;  /* Did something fail in an external? */
 };