You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by hw...@apache.org on 2011/10/21 03:54:40 UTC

svn commit: r1187166 - /subversion/trunk/subversion/libsvn_delta/compat.c

Author: hwright
Date: Fri Oct 21 01:54:40 2011
New Revision: 1187166

URL: http://svn.apache.org/viewvc?rev=1187166&view=rev
Log:
Remove a couple of unused variables that probably won't be used.

* subversion/libsvn_delta/compat.c
  (ev2_close_directory, ev2_close_file): Remove baton variables.

Modified:
    subversion/trunk/subversion/libsvn_delta/compat.c

Modified: subversion/trunk/subversion/libsvn_delta/compat.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_delta/compat.c?rev=1187166&r1=1187165&r2=1187166&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_delta/compat.c (original)
+++ subversion/trunk/subversion/libsvn_delta/compat.c Fri Oct 21 01:54:40 2011
@@ -369,8 +369,6 @@ static svn_error_t *
 ev2_close_directory(void *dir_baton,
                     apr_pool_t *scratch_pool)
 {
-  struct ev2_dir_baton *db = dir_baton;
-
   return SVN_NO_ERROR;
 }
 
@@ -460,7 +458,6 @@ ev2_close_file(void *file_baton,
                const char *text_checksum,
                apr_pool_t *scratch_pool)
 {
-  struct ev2_file_baton *fb = file_baton;
   return SVN_NO_ERROR;
 }