Fix win tinderbox breaking typo

This commit is contained in:
Marijn Haverbeke 2011-07-26 15:39:18 +02:00
parent bfaa85b735
commit 41d27ddcc2

View file

@ -60,7 +60,7 @@ fn target_os() -> str { ret "win32"; }
fn dylib_filename(str base) -> str { ret base + ".dll"; }
fn pipe() -> rec(int in, int out) {
auto fds = rec(mutable int=0, mutable out=0);
auto fds = rec(mutable in=0, mutable out=0);
assert (os::libc::_pipe(ptr::addr_of(fds.in), 1024u,
libc_constants::O_BINARY()) == 0);
ret rec(in=fds.in, out=fds.out);