Skip to content

Commit

Permalink
powerpc: get rid of nlink_t uses, switch to explicitly-sized type
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 31, 2012
1 parent dcc62b6 commit e57f93c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/powerpc/include/asm/stat.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ struct stat {
unsigned long st_dev;
ino_t st_ino;
#ifdef __powerpc64__
nlink_t st_nlink;
unsigned short st_nlink;
mode_t st_mode;
#else
mode_t st_mode;
nlink_t st_nlink;
unsigned short st_nlink;
#endif
uid_t st_uid;
gid_t st_gid;
Expand Down

0 comments on commit e57f93c

Please sign in to comment.