Browse Source

mips64 patch from Atsushi Nemoto:
The kernel include/asm-mips/posix_types.h defines
__kernel_ino_t as unsigned long.

Eric Andersen 18 years ago
parent
commit
c2ed9615f7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libc/sysdeps/linux/mips/bits/kernel_types.h

+ 1 - 1
libc/sysdeps/linux/mips/bits/kernel_types.h

@@ -9,7 +9,7 @@
 
 # if __WORDSIZE == 64
 typedef unsigned int	__kernel_dev_t;
-typedef unsigned int	__kernel_ino_t;
+typedef unsigned long	__kernel_ino_t;
 typedef unsigned int	__kernel_mode_t;
 typedef unsigned int	__kernel_nlink_t;
 typedef long		__kernel_off_t;