sparc32: Fix struct stat uid/gid types.

Commit 085219f79cad89291699bd2bfb21c9fdabafe65f
("sparc32: use proper types in struct stat")

Accidently changed the struct stat uid/gid members
to uid_t and gid_t, but those get set to
__kernel_uid32_t and __kernel_gid32_t respectively.
Those are of type 'int' but the structure is meant
to have 'short'. So use uid16_t and gid16_t to
correct this.

Reported-by: Rob Landley <rob@landley.net>
Signed-off-by: David S. Miller <davem@davemloft.net>

+2 -2
+2 -2
arch/sparc/include/asm/stat.h
··· 53 53 ino_t st_ino; 54 54 mode_t st_mode; 55 55 short st_nlink; 56 - uid_t st_uid; 57 - gid_t st_gid; 56 + uid16_t st_uid; 57 + gid16_t st_gid; 58 58 unsigned short st_rdev; 59 59 off_t st_size; 60 60 time_t st_atime;