Author: philip
Date: Wed Jun 30 15:41:58 2010
New Revision: 959354
URL: http://svn.apache.org/viewvc?rev=959354&view=rev
Log:
* subversion/libsvn_wc/upgrade.c
(svn_wc__upgrade_sdb): Add cast to remove compiler warning, remove
out-of-date comment.
Modified:
subversion/trunk/subversion/libsvn_wc/upgrade.c
Modified: subversion/trunk/subversion/libsvn_wc/upgrade.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/upgrade.c?rev=959354&r1=959353&r2=959354&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/upgrade.c (original)
+++ subversion/trunk/subversion/libsvn_wc/upgrade.c Wed Jun 30 15:41:58 2010
@@ -1334,10 +1334,9 @@ svn_wc__upgrade_sdb(int *result_format,
SVN_ERR(svn_wc__ensure_directory(pristine_dir, scratch_pool));
/* Move text bases into the pristine directory, and update the db */
- SVN_ERR(svn_sqlite__with_transaction(sdb, bump_to_17, wcroot_abspath,
+ SVN_ERR(svn_sqlite__with_transaction(sdb, bump_to_17,
+ (void *)wcroot_abspath,
scratch_pool));
-
- /* ### Remove old text-base directory? */
}
*result_format = 17;