diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2003-05-11 21:52:09 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2003-05-11 21:52:09 +0000 |
commit | cc95baad414526fd2764e92f445a1b3f1d3db2ab (patch) | |
tree | e6bd175a89a62aee5781a081d15c31e28f5eccae /winsup/cygwin/fhandler_disk_file.cc | |
parent | d1b5e65ba333661bdcba161023bc964562a06812 (diff) | |
download | cygnal-cc95baad414526fd2764e92f445a1b3f1d3db2ab.tar.gz cygnal-cc95baad414526fd2764e92f445a1b3f1d3db2ab.tar.bz2 cygnal-cc95baad414526fd2764e92f445a1b3f1d3db2ab.zip |
Replace ino_t by __ino64_t throughout.
Diffstat (limited to 'winsup/cygwin/fhandler_disk_file.cc')
-rw-r--r-- | winsup/cygwin/fhandler_disk_file.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_disk_file.cc b/winsup/cygwin/fhandler_disk_file.cc index 3a944200b..bd235b35d 100644 --- a/winsup/cygwin/fhandler_disk_file.cc +++ b/winsup/cygwin/fhandler_disk_file.cc @@ -250,7 +250,8 @@ fhandler_disk_file::fstat_helper (struct __stat64 *buf, path_conv *pc, case DRIVE_RAMDISK: /* Although the documentation indicates otherwise, it seems like "inodes" on these devices are persistent, at least across reboots. */ - buf->st_ino = (((ino_t) nFileIndexHigh) << 32) | (ino_t) nFileIndexLow; + buf->st_ino = (((__ino64_t) nFileIndexHigh) << 32) + | (__ino64_t) nFileIndexLow; break; default: /* Either the nFileIndex* fields are unreliable or unavailable. Use the |