From 62170bd0738434ae8a3f28f085ad027a974e8e58 Mon Sep 17 00:00:00 2001 From: bojan Date: Tue, 15 May 2007 21:06:27 +0000 Subject: Backport r538262 from 1.2.x branch. Remove a C++ style declaration. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/0.9.x@538319 13f79535-47bb-0310-9956-ffa450edef68 --- file_io/unix/readwrite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file_io/unix/readwrite.c b/file_io/unix/readwrite.c index c0e3f520f..541ab587a 100644 --- a/file_io/unix/readwrite.c +++ b/file_io/unix/readwrite.c @@ -231,7 +231,7 @@ APR_DECLARE(apr_status_t) apr_file_writev(apr_file_t *thefile, const struct iove 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; -- cgit v1.2.1