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 2010/11/15 16:18:18 UTC

svn commit: r1035301 - /subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c

Author: julianfoad
Date: Mon Nov 15 15:18:17 2010
New Revision: 1035301

URL: http://svn.apache.org/viewvc?rev=1035301&view=rev
Log:
* subversion/tests/libsvn_wc/op-depth-test.c
  (insert_dirs): Fix svn_sqlite__bindf() parameter types, to fix test
    failure.

Modified:
    subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c

Modified: subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c?rev=1035301&r1=1035300&r2=1035301&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c (original)
+++ subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c Mon Nov 15 15:18:17 2010
@@ -1198,9 +1198,9 @@ insert_dirs(wc_baton_t *b,
       if (nodes->local_relpath[0])
         {
           SVN_ERR(svn_sqlite__get_statement(&stmt, sdb, 2));
-          SVN_ERR(svn_sqlite__bindf(stmt, "sissis",
+          SVN_ERR(svn_sqlite__bindf(stmt, "sissrs",
                                     nodes->local_relpath,
-                                    nodes->op_depth,
+                                    (apr_int64_t)nodes->op_depth,
                                     nodes->presence,
                                     nodes->repo_relpath,
                                     nodes->repo_revnum,
@@ -1210,9 +1210,9 @@ insert_dirs(wc_baton_t *b,
       else
         {
           SVN_ERR(svn_sqlite__get_statement(&stmt, sdb, 1));
-          SVN_ERR(svn_sqlite__bindf(stmt, "sissi",
+          SVN_ERR(svn_sqlite__bindf(stmt, "sissr",
                                     nodes->local_relpath,
-                                    nodes->op_depth,
+                                    (apr_int64_t)nodes->op_depth,
                                     nodes->presence,
                                     nodes->repo_relpath,
                                     nodes->repo_revnum));