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/13 02:09:33 UTC

svn commit: r985046 - /subversion/branches/performance/subversion/tests/libsvn_subr/stream-test.c

Author: stefan2
Date: Fri Aug 13 00:09:33 2010
New Revision: 985046

URL: http://svn.apache.org/viewvc?rev=985046&view=rev
Log:
Follow-up to r985037: fix broken build (this change somehow got stuck in the editor).

* subversion/tests/libsvn_subr/stream-test.c
  (generate_test_bytes): fix function name to call

Modified:
    subversion/branches/performance/subversion/tests/libsvn_subr/stream-test.c

Modified: subversion/branches/performance/subversion/tests/libsvn_subr/stream-test.c
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/libsvn_subr/stream-test.c?rev=985046&r1=985045&r2=985046&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/libsvn_subr/stream-test.c (original)
+++ subversion/branches/performance/subversion/tests/libsvn_subr/stream-test.c Fri Aug 13 00:09:33 2010
@@ -128,7 +128,7 @@ generate_test_bytes(int num_bytes, apr_p
 
   for (total = 0, repeat = repeat_iter = 1, c = 0; total < num_bytes; total++)
     {
-      svn_stringbuf_appendbytes(buffer, c);
+      svn_stringbuf_appendbyte(buffer, c);
 
       repeat_iter--;
       if (repeat_iter == 0)