From 5bd9efebda67e9ed027348b11f844a8b18aad17b Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sun, 18 May 2014 12:38:01 -0700 Subject: [PATCH] Fix Windows build, take 2. --- test/posix-test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/posix-test.cc b/test/posix-test.cc index dd09160f..02cb0ce7 100644 --- a/test/posix-test.cc +++ b/test/posix-test.cc @@ -115,7 +115,7 @@ int test::pipe(int fildes[2]) { #else int test::pipe(int *pfds, unsigned psize, int textmode) { EMULATE_EINTR(pipe, -1); - return _pipe(fildes, 256, O_BINARY); + return _pipe(pfds, psize, textmode); } #endif