summaryrefslogtreecommitdiff
path: root/file_io/win32
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2015-04-23 10:56:39 +0000
committerJeff Trawick <trawick@apache.org>2015-04-23 10:56:39 +0000
commit6380b7741b8cc658bb88a0f704a8eb299f0d0bb8 (patch)
tree4e1848aa62bdf0a5855409a3d89319baae3c81aa /file_io/win32
parent47c1ad841ed0e21c2a119fb9b848946a6fda38cb (diff)
downloadapr-6380b7741b8cc658bb88a0f704a8eb299f0d0bb8.tar.gz
fix whitespace regression compared with 1.6.x
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1675571 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io/win32')
-rw-r--r--file_io/win32/pipe.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/file_io/win32/pipe.c b/file_io/win32/pipe.c
index 010cee97e..931ff5170 100644
--- a/file_io/win32/pipe.c
+++ b/file_io/win32/pipe.c
@@ -85,7 +85,7 @@ APR_DECLARE(apr_status_t) apr_file_pipe_create_ex(apr_file_t **in,
char name[50];
sa.nLength = sizeof(sa);
-
+
#if APR_HAS_UNICODE_FS
IF_WIN_OS_IS_UNICODE
sa.bInheritHandle = FALSE;
@@ -145,9 +145,9 @@ APR_DECLARE(apr_status_t) apr_file_pipe_create_ex(apr_file_t **in,
dwOpenMode,
dwPipeMode,
1, /* nMaxInstances, */
- 0, /* nOutBufferSize, */
- 65536, /* nInBufferSize, */
- 1, /* nDefaultTimeOut, */
+ 0, /* nOutBufferSize, */
+ 65536, /* nInBufferSize, */
+ 1, /* nDefaultTimeOut, */
&sa);
/* Create the write end of the pipe */
@@ -159,7 +159,7 @@ APR_DECLARE(apr_status_t) apr_file_pipe_create_ex(apr_file_t **in,
(*out)->pOverlapped->hEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
(*out)->timeout = 0;
}
-
+
(*out)->filehand = CreateFile(name,
GENERIC_WRITE, /* access mode */
0, /* share mode */
@@ -235,7 +235,7 @@ APR_DECLARE(apr_status_t) apr_os_pipe_put(apr_file_t **file,
static apr_status_t create_socket_pipe(SOCKET *rd, SOCKET *wr)
{
static int id = 0;
- FD_SET rs;
+ FD_SET rs;
SOCKET ls;
struct timeval socktm;
struct sockaddr_in pa;