You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2011/05/09 18:34:19 UTC

svn commit: r1101100 - /subversion/trunk/subversion/libsvn_wc/wc_db.c

Author: julianfoad
Date: Mon May  9 16:34:18 2011
New Revision: 1101100

URL: http://svn.apache.org/viewvc?rev=1101100&view=rev
Log:
* subversion/libsvn_wc/wc_db.c
  (descendant_commit): Use sqlite__bindf()'s dedicated format letter 'r' for
    a revnum and so lose the type cast. No functional change.

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

Modified: subversion/trunk/subversion/libsvn_wc/wc_db.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/wc_db.c?rev=1101100&r1=1101099&r2=1101100&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/wc_db.c (original)
+++ subversion/trunk/subversion/libsvn_wc/wc_db.c Mon May  9 16:34:18 2011
@@ -7838,13 +7838,13 @@ descendant_commit(svn_wc__db_wcroot_t *w
 
       local_relpath = svn_relpath_join(parent_local_relpath, name, iterpool);
       repos_relpath = svn_relpath_join(parent_repos_relpath, name, iterpool);
-      SVN_ERR(svn_sqlite__bindf(stmt, "isiisi",
+      SVN_ERR(svn_sqlite__bindf(stmt, "isiisr",
                                 wcroot->wc_id,
                                 local_relpath,
                                 op_depth,
                                 repos_id,
                                 repos_relpath,
-                                (apr_int64_t)revision));
+                                revision));
       SVN_ERR(svn_sqlite__step_done(stmt));
 
       SVN_ERR(descendant_commit(wcroot, local_relpath, op_depth, repos_id,