Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 2170

Show
Ignore:
Timestamp:
05/05/07 17:43:00 (2 years ago)
Author:
kris
Message:

fix for #448

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/io/FilePath.d

    r2165 r2170  
    12341234                        getInfo (stats); 
    12351235 
    1236                         time.modified = convert (*cast(timeval*) &stats.st_mtime); 
    1237                         time.accessed = convert (*cast(timeval*) &stats.st_atime); 
    1238                         time.created  = convert (*cast(timeval*) &stats.st_ctime); 
     1236                        time.modified = convert (cast(timeval*) &stats.st_mtime); 
     1237                        time.accessed = convert (cast(timeval*) &stats.st_atime); 
     1238                        time.created  = convert (cast(timeval*) &stats.st_ctime); 
    12391239                        return time; 
    12401240                }