File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 7e8b57d1bba8974b21718724f760f547b3b48799
2
+ refs/heads/master: 4b5b96c51101a02e18eb2bb27e742ef0b3e74537
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ fn dylib_filename(str base) -> str {
62
62
}
63
63
64
64
fn pipe ( ) -> tup ( int , int ) {
65
- let vec[ mutable int] fds = vec ( mutable 0 , 0 ) ;
65
+ let vec[ mutable int] fds = vec ( 0 , 0 ) ;
66
66
assert ( OS . libc . pipe ( Vec . buf [ mutable int] ( fds) ) == 0 ) ;
67
67
ret tup( fds. ( 0 ) , fds. ( 1 ) ) ;
68
68
}
@@ -72,7 +72,7 @@ fn fd_FILE(int fd) -> libc.FILE {
72
72
}
73
73
74
74
fn waitpid ( int pid) -> int {
75
- let vec[ mutable int] status = vec ( mutable 0 ) ;
75
+ let vec[ mutable int] status = vec ( 0 ) ;
76
76
assert ( OS . libc . waitpid ( pid, Vec . buf [ mutable int] ( status) , 0 ) != -1 ) ;
77
77
ret status. ( 0 ) ;
78
78
}
You can’t perform that action at this time.
0 commit comments