Skip to content

Commit 97df594

Browse files
committed
---
yaml --- r: 6283 b: refs/heads/master c: a7fc5de h: refs/heads/master i: 6281: 603e151 6279: 47120f7 v: v3
1 parent cd9ace3 commit 97df594

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
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: aa0381dbd3699e120b4613b9ce400f82e722adef
2+
refs/heads/master: a7fc5decab71462db2a5844d230693f5cb36e3aa

trunk/src/lib/win32_os.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ fn pipe() -> {in: int, out: int} {
6161
let fds = {mutable in: 0, mutable out: 0};
6262
let res =
6363
os::libc::_pipe(ptr::mut_addr_of(fds.in), 1024u,
64-
libc_constants::O_BINARY() |
65-
libc_constants::O_NOINHERIT());
64+
libc_constants::O_BINARY |
65+
libc_constants::O_NOINHERIT);
6666
assert (res == 0);
6767
assert (fds.in != -1 && fds.in != 0);
6868
assert (fds.out != -1 && fds.in != 0);

0 commit comments

Comments
 (0)