You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bn...@apache.org on 2007/05/15 19:48:43 UTC

svn commit: r538262 - /apr/apr/branches/1.2.x/file_io/unix/readwrite.c

Author: bnicholes
Date: Tue May 15 10:48:43 2007
New Revision: 538262

URL: http://svn.apache.org/viewvc?view=rev&rev=538262
Log:
Remove a C++ style declaration

Modified:
    apr/apr/branches/1.2.x/file_io/unix/readwrite.c

Modified: apr/apr/branches/1.2.x/file_io/unix/readwrite.c
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.2.x/file_io/unix/readwrite.c?view=diff&rev=538262&r1=538261&r2=538262
==============================================================================
--- apr/apr/branches/1.2.x/file_io/unix/readwrite.c (original)
+++ apr/apr/branches/1.2.x/file_io/unix/readwrite.c Tue May 15 10:48:43 2007
@@ -233,7 +233,7 @@
     if (thefile->buffered) {
         file_lock(thefile);
 
-        apr_status_t rv = apr_file_flush_locked(thefile);
+        rv = apr_file_flush_locked(thefile);
         if (rv != APR_SUCCESS) {
             file_unlock(thefile);
             return rv;