You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2010/08/22 14:15:59 UTC

svn commit: r987887 - /subversion/branches/performance/subversion/libsvn_subr/subst.c

Author: stefan2
Date: Sun Aug 22 12:15:59 2010
New Revision: 987887

URL: http://svn.apache.org/viewvc?rev=987887&view=rev
Log:
Remove unused local declaration.

* subversion/libsvn_subr/subst.c
  (translated_stream_skip): b was unused

Modified:
    subversion/branches/performance/subversion/libsvn_subr/subst.c

Modified: subversion/branches/performance/subversion/libsvn_subr/subst.c
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/libsvn_subr/subst.c?rev=987887&r1=987886&r2=987887&view=diff
==============================================================================
--- subversion/branches/performance/subversion/libsvn_subr/subst.c (original)
+++ subversion/branches/performance/subversion/libsvn_subr/subst.c Sun Aug 22 12:15:59 2010
@@ -1196,7 +1196,6 @@ static svn_error_t *
 translated_stream_skip(void *baton,
                        apr_size_t *count)
 {
-  struct translated_stream_baton *b = baton;
   apr_size_t total_bytes_read = 0;
   apr_size_t bytes_read;
   char buffer[SVN__STREAM_CHUNK_SIZE];