Replace ino_t by __ino64_t throughout.

This commit is contained in:
Corinna Vinschen
2003-05-11 21:52:09 +00:00
parent d1b5e65ba3
commit cc95baad41
7 changed files with 13 additions and 8 deletions

View File

@ -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);