Skip to content

Commit f37f3ec

Browse files
nikomatsakisbrson
authored andcommitted
---
yaml --- r: 5935 b: refs/heads/master c: 35e01e0 h: refs/heads/master i: 5933: e628f15 5931: 7af3a27 5927: 34a6dc5 5919: ee17e67 v: v3
1 parent fe90f3c commit f37f3ec

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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: af99b4b0dc530e58ced8780f0322ca8d2c1578f9
2+
refs/heads/master: 35e01e0137e5edced626b201f2f2ca569247e95a

trunk/src/lib/posix_fs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
native "c-stack-cdecl" mod rustrt {
3-
fn rust_list_files(&&path: str) -> [str];
3+
fn rust_list_files(path: str) -> [str];
44
}
55

66
fn list_dir(path: str) -> [str] {

trunk/src/lib/win32_fs.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11

22

33
native "c-stack-cdecl" mod rustrt {
4-
fn rust_list_files(&&path: str) -> [str];
5-
fn rust_file_is_dir(&&path: str) -> int;
4+
fn rust_list_files(path: str) -> [str];
5+
fn rust_file_is_dir(path: str) -> int;
66
}
77

88
fn list_dir(path: str) -> [str] {

0 commit comments

Comments
 (0)