Skip to content

Commit

Permalink
mips: get rid of nlink_t, use explictly-sized type (__u32 in all cases)
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
  • Loading branch information
Al Viro committed May 30, 2012
1 parent 726592a commit dcc62b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch/mips/include/asm/stat.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ struct stat {
long st_pad1[3]; /* Reserved for network id */
ino_t st_ino;
mode_t st_mode;
nlink_t st_nlink;
__u32 st_nlink;
uid_t st_uid;
gid_t st_gid;
unsigned st_rdev;
Expand Down Expand Up @@ -55,7 +55,7 @@ struct stat64 {
unsigned long long st_ino;

mode_t st_mode;
nlink_t st_nlink;
__u32 st_nlink;

uid_t st_uid;
gid_t st_gid;
Expand Down Expand Up @@ -96,7 +96,7 @@ struct stat {
unsigned long st_ino;

mode_t st_mode;
nlink_t st_nlink;
__u32 st_nlink;

uid_t st_uid;
gid_t st_gid;
Expand Down

0 comments on commit dcc62b6

Please sign in to comment.