Skip to content

Commit

Permalink
sparc32: use proper types in struct stat
Browse files Browse the repository at this point in the history
Like sparc64 use proper types in struct stat

Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Sam Ravnborg authored and David S. Miller committed Jan 3, 2009
1 parent 104e280 commit 085219f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions arch/sparc/include/asm/stat_32.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@

struct stat {
unsigned short st_dev;
unsigned long st_ino;
unsigned short st_mode;
ino_t st_ino;
mode_t st_mode;
short st_nlink;
unsigned short st_uid;
unsigned short st_gid;
uid_t st_uid;
gid_t st_gid;
unsigned short st_rdev;
long st_size;
long st_atime;
off_t st_size;
time_t st_atime;
unsigned long st_atime_nsec;
long st_mtime;
time_t st_mtime;
unsigned long st_mtime_nsec;
long st_ctime;
time_t st_ctime;
unsigned long st_ctime_nsec;
long st_blksize;
long st_blocks;
off_t st_blksize;
off_t st_blocks;
unsigned long __unused4[2];
};

Expand Down

0 comments on commit 085219f

Please sign in to comment.