summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2015-04-23 10:58:55 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2015-04-23 10:58:55 +0000
commitf4d221e8fe39808b91d4d9af757441ed573c0a95 (patch)
treefa3303154ab196aeaacba1c0ecaacfd8858561ef
parent236cf5f2b5b03a161bbff35fd8d3876f026fb9c0 (diff)
downloadlibapr-f4d221e8fe39808b91d4d9af757441ed573c0a95.tar.gz
backport minor whitespace tweaks from trunk
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.5.x@1675573 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--file_io/win32/pipe.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/file_io/win32/pipe.c b/file_io/win32/pipe.c
index f240eba5c..a26376217 100644
--- a/file_io/win32/pipe.c
+++ b/file_io/win32/pipe.c
@@ -46,7 +46,8 @@ APR_DECLARE(apr_status_t) apr_file_pipe_timeout_set(apr_file_t *thepipe,
return APR_ENOTIMPL;
}
if (timeout && !(thepipe->pOverlapped)) {
- /* Cannot be nonzero if a pipe was opened blocking */
+ /* Cannot be nonzero if a pipe was opened blocking
+ */
return APR_EINVAL;
}
thepipe->timeout = timeout;
@@ -160,12 +161,12 @@ APR_DECLARE(apr_status_t) apr_file_pipe_create_ex(apr_file_t **in,
}
(*out)->filehand = CreateFile(name,
- GENERIC_WRITE, /* access mode */
- 0, /* share mode */
- &sa, /* Security attributes */
- OPEN_EXISTING, /* dwCreationDisposition */
- dwOpenMode, /* Pipe attributes */
- NULL); /* handle to template file */
+ GENERIC_WRITE, /* access mode */
+ 0, /* share mode */
+ &sa, /* Security attributes */
+ OPEN_EXISTING, /* dwCreationDisposition */
+ dwOpenMode, /* Pipe attributes */
+ NULL); /* handle to template file */
}
else {
/* Pipes on Win9* are blocking. Live with it. */