Skip to content

Commit bc03aca

Browse files
committed
---
yaml --- r: 4126 b: refs/heads/master c: 41d27dd h: refs/heads/master v: v3
1 parent 2e23a85 commit bc03aca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: bfaa85b73579c10252d4f0546ce59ce04dc14752
2+
refs/heads/master: 41d27ddcc25fba95cd3d12bafa54042dd59a78fc

trunk/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)