summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/fhandler.h
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2003-05-11 21:52:09 +0000
committerCorinna Vinschen <corinna@vinschen.de>2003-05-11 21:52:09 +0000
commitcc95baad414526fd2764e92f445a1b3f1d3db2ab (patch)
treee6bd175a89a62aee5781a081d15c31e28f5eccae /winsup/cygwin/fhandler.h
parentd1b5e65ba333661bdcba161023bc964562a06812 (diff)
downloadcygnal-cc95baad414526fd2764e92f445a1b3f1d3db2ab.tar.gz
cygnal-cc95baad414526fd2764e92f445a1b3f1d3db2ab.tar.bz2
cygnal-cc95baad414526fd2764e92f445a1b3f1d3db2ab.zip
Replace ino_t by __ino64_t throughout.
Diffstat (limited to 'winsup/cygwin/fhandler.h')
-rw-r--r--winsup/cygwin/fhandler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler.h b/winsup/cygwin/fhandler.h
index 23e597cd8..781f0838e 100644
--- a/winsup/cygwin/fhandler.h
+++ b/winsup/cygwin/fhandler.h
@@ -151,7 +151,7 @@ class fhandler_base
int access;
HANDLE io_handle;
- ino_t namehash; /* hashed filename, used as inode num */
+ __ino64_t namehash; /* hashed filename, used as inode num */
protected:
/* Full unix path name of this file */
@@ -292,7 +292,7 @@ class fhandler_base
const char *get_name () { return unix_path_name; }
const char *get_win32_name () { return win32_path_name; }
- ino_t get_namehash () { return namehash; }
+ __ino64_t get_namehash () { return namehash; }
virtual void hclose (HANDLE h) {CloseHandle (h);}
virtual void set_inheritance (HANDLE &h, int not_inheriting);