Change spelling of u_int' to unsigned int' in the POSIX case.

This commit is contained in:
Mike Barcroft 2003-02-26 20:10:54 +00:00
parent 7dd982591b
commit 7e7a2c70c0

View File

@ -129,8 +129,8 @@ struct stat {
#else
time_t st_birthtime; /* time of file creation */
long st_birthtimensec; /* nsec of file creation */
u_int :(8 / 2) * (16 - (int)sizeof(struct __timespec));
u_int :(8 / 2) * (16 - (int)sizeof(struct __timespec));
unsigned int :(8 / 2) * (16 - (int)sizeof(struct __timespec));
unsigned int :(8 / 2) * (16 - (int)sizeof(struct __timespec));
#endif
};