File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
branches/auto/src/libcore Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -14,5 +14,5 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
14
14
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
15
15
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
16
16
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
17
- refs/heads/auto: a04ba76f8e436d1c1919b0a97bc91190c7252d7a
17
+ refs/heads/auto: cf82360e729eb941c2de080fbcf715dea3417edd
18
18
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
Original file line number Diff line number Diff line change @@ -685,7 +685,7 @@ pub fn list_dir(p: &Path) -> ~[~str] {
685
685
log ( debug, "os::list_dir -- BEFORE OPENDIR" ) ;
686
686
let dir_ptr = opendir ( input_ptr) ;
687
687
if ( dir_ptr as uint != 0 ) {
688
- log ( debug, "os::list_dir -- opendir() SUCCESS" ) ;
688
+ log ( debug, "os::list_dir -- opendir() SUCCESS" ) ;
689
689
let mut entry_ptr = readdir ( dir_ptr) ;
690
690
while ( entry_ptr as uint != 0 ) {
691
691
strings. push (
@@ -697,9 +697,11 @@ pub fn list_dir(p: &Path) -> ~[~str] {
697
697
closedir ( dir_ptr) ;
698
698
}
699
699
else {
700
- log ( debug, "os::list_dir -- opendir() FAILURE" ) ;
700
+ log ( debug, "os::list_dir -- opendir() FAILURE" ) ;
701
701
}
702
- log ( debug, fmt ! ( "os::list_dir -- AFTER ITERATION -- # of results: %?" , strings. len( ) ) ) ;
702
+ log ( debug,
703
+ fmt ! ( "os::list_dir -- AFTER -- #: %?" ,
704
+ strings. len( ) ) ) ;
703
705
strings
704
706
}
705
707
#[ cfg( windows) ]
You can’t perform that action at this time.
0 commit comments