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