Skip to content

Commit 41d27dd

Browse files
committed
Fix win tinderbox breaking typo
1 parent bfaa85b commit 41d27dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/win32_os.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ fn target_os() -> str { ret "win32"; }
6060
fn dylib_filename(str base) -> str { ret base + ".dll"; }
6161

6262
fn pipe() -> rec(int in, int out) {
63-
auto fds = rec(mutable int=0, mutable out=0);
63+
auto fds = rec(mutable in=0, mutable out=0);
6464
assert (os::libc::_pipe(ptr::addr_of(fds.in), 1024u,
6565
libc_constants::O_BINARY()) == 0);
6666
ret rec(in=fds.in, out=fds.out);

0 commit comments

Comments
 (0)