We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfaa85b commit 41d27ddCopy full SHA for 41d27dd
src/lib/win32_os.rs
@@ -60,7 +60,7 @@ fn target_os() -> str { ret "win32"; }
60
fn dylib_filename(str base) -> str { ret base + ".dll"; }
61
62
fn pipe() -> rec(int in, int out) {
63
- auto fds = rec(mutable int=0, mutable out=0);
+ auto fds = rec(mutable in=0, mutable out=0);
64
assert (os::libc::_pipe(ptr::addr_of(fds.in), 1024u,
65
libc_constants::O_BINARY()) == 0);
66
ret rec(in=fds.in, out=fds.out);
0 commit comments