about summary refs log tree commit diff
path: root/src/lib
diff options
context:
space:
mode:
authorMarijn Haverbeke <marijnh@gmail.com>2011-07-26 15:39:18 +0200
committerMarijn Haverbeke <marijnh@gmail.com>2011-07-26 15:39:18 +0200
commit41d27ddcc25fba95cd3d12bafa54042dd59a78fc (patch)
treef0a13f7fb0b5da2e73f6b227edde70db47b779ab /src/lib
parentbfaa85b73579c10252d4f0546ce59ce04dc14752 (diff)
Fix win tinderbox breaking typo
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/win32_os.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/win32_os.rs b/src/lib/win32_os.rs
index ca58d5e9097..15d950b850c 100644
--- a/src/lib/win32_os.rs
+++ b/src/lib/win32_os.rs
@@ -60,7 +60,7 @@ fn target_os() -> str { ret "win32"; }
 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);