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/11/23 17:11:56 UTC

svn commit: r1038186 - /subversion/trunk/subversion/libsvn_client/export.c

Author: danielsh
Date: Tue Nov 23 16:11:56 2010
New Revision: 1038186

URL: http://svn.apache.org/viewvc?rev=1038186&view=rev
Log:
* subversion/libsvn_client/export.c
  (copy_versioned_files):
    Dereference the callback pointer before the call, for consistency.

Modified:
    subversion/trunk/subversion/libsvn_client/export.c

Modified: subversion/trunk/subversion/libsvn_client/export.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/export.c?rev=1038186&r1=1038185&r2=1038186&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/export.c (original)
+++ subversion/trunk/subversion/libsvn_client/export.c Tue Nov 23 16:11:56 2010
@@ -536,7 +536,7 @@ copy_versioned_files(const char *from,
           svn_wc_notify_t *notify = svn_wc_create_notify(to_abspath,
                                           svn_wc_notify_update_add, pool);
           notify->kind = svn_node_file;
-          (ctx->notify_func2)(ctx->notify_baton2, notify, pool);
+          (*ctx->notify_func2)(ctx->notify_baton2, notify, pool);
         }
     }