mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-22 10:05:06 +03:00
Fix win tinderbox breaking typo
This commit is contained in:
+1
-1
@@ -60,7 +60,7 @@ fn S_IWUSR() -> uint {
|
||||
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);
|
||||
|
||||
Reference in New Issue
Block a user