Fix win tinderbox breaking typo
This commit is contained in:
parent
bfaa85b735
commit
41d27ddcc2
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user