File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 2
2
refs/heads/master: 5f13e9ccc2e3328d4cd8ca49f84e6840dd998346
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: f7a2371c176663d59062ec5158f39faecba45768
5
- refs/heads/try: a04ba76f8e436d1c1919b0a97bc91190c7252d7a
5
+ refs/heads/try: cf82360e729eb941c2de080fbcf715dea3417edd
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
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