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 2e23a85 commit bc03acaCopy full SHA for bc03aca
[refs]
@@ -1,2 +1,2 @@
1
---
2
-refs/heads/master: bfaa85b73579c10252d4f0546ce59ce04dc14752
+refs/heads/master: 41d27ddcc25fba95cd3d12bafa54042dd59a78fc
trunk/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