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

@ -442,7 +442,7 @@ fhandler_socket::fstat (struct __stat64 *buf, path_conv *pc)
if (get_socket_type ()) /* fstat */
{
buf->st_dev = 0;
buf->st_ino = (ino_t) ((DWORD) get_handle ());
buf->st_ino = (__ino64_t) ((DWORD) get_handle ());
buf->st_mode = S_IFSOCK | S_IRWXU | S_IRWXG | S_IRWXO;
}
else