summaryrefslogtreecommitdiff
path: root/file_io
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2006-03-23 22:44:16 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2006-03-23 22:44:16 +0000
commit3b4edd00fdb404732096b7ae0a123e0a22707db4 (patch)
tree821104b78cd3b9ce47cc2be49c8a4c8c20dde1ba /file_io
parentd56099a3e3b4439c21d0b8dc356ce5030cedd8a5 (diff)
downloadapr-3b4edd00fdb404732096b7ae0a123e0a22707db4.tar.gz
Minor typo fix to previous commit.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@388285 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io')
-rw-r--r--file_io/win32/readwrite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/file_io/win32/readwrite.c b/file_io/win32/readwrite.c
index 7b3553529..54080b307 100644
--- a/file_io/win32/readwrite.c
+++ b/file_io/win32/readwrite.c
@@ -122,7 +122,7 @@ static apr_status_t read_with_timeout(apr_file_t *file, void *buf, apr_size_t le
/* OK and 0 bytes read ==> end of file */
if (rv == APR_SUCCESS && bytesread == 0)
rv = APR_EOF;
- }
+
if (rv == APR_SUCCESS && file->pOverlapped && !file->pipe) {
file->filePtr += bytesread;
}