Fix EventPipe file descriptors

This commit is contained in:
Ryan Walklin 2017-08-17 12:21:01 +10:00
parent 9df8b32f10
commit 318f80d113
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ EventPipe::EventPipe()
throw MakeErrno("pipe() has failed");
fds[0] = r.Steal();
fds[1] = r.Steal();
fds[1] = w.Steal();
#endif
}