You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by tr...@apache.org on 2013/10/21 13:14:58 UTC

svn commit: r1534096 - /apr/apr/branches/1.5.x/file_io/win32/readwrite.c

Author: trawick
Date: Mon Oct 21 11:14:57 2013
New Revision: 1534096

URL: http://svn.apache.org/r1534096
Log:
Axe C++ comments (a part of trunk 1068870 which isn't in 1.5.x)

Modified:
    apr/apr/branches/1.5.x/file_io/win32/readwrite.c

Modified: apr/apr/branches/1.5.x/file_io/win32/readwrite.c
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.5.x/file_io/win32/readwrite.c?rev=1534096&r1=1534095&r2=1534096&view=diff
==============================================================================
--- apr/apr/branches/1.5.x/file_io/win32/readwrite.c (original)
+++ apr/apr/branches/1.5.x/file_io/win32/readwrite.c Mon Oct 21 11:14:57 2013
@@ -275,7 +275,7 @@ APR_DECLARE(apr_status_t) apr_file_write
 
         rv = 0;
         while (rv == 0 && size > 0) {
-            if (thefile->bufpos == thefile->bufsize)   // write buffer is full
+            if (thefile->bufpos == thefile->bufsize)   /* write buffer is full */
                 rv = apr_file_flush(thefile);
 
             blocksize = size > thefile->bufsize - thefile->bufpos ?