diff options
author | mike <mike@FreeBSD.org> | 2003-02-26 20:10:54 +0000 |
---|---|---|
committer | mike <mike@FreeBSD.org> | 2003-02-26 20:10:54 +0000 |
commit | a02a4e9cde6d4d209412d262cbc5f82b8de5219d (patch) | |
tree | 9fa6d1fecf002ef2b6b0a7d104ae05e3f2ac40e1 | |
parent | 6e8e34b9a35fafa432057f7a7706e9cd49748e4c (diff) | |
download | FreeBSD-src-a02a4e9cde6d4d209412d262cbc5f82b8de5219d.zip FreeBSD-src-a02a4e9cde6d4d209412d262cbc5f82b8de5219d.tar.gz |
Change spelling of `u_int' to `unsigned int' in the POSIX case.
-rw-r--r-- | sys/sys/stat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/stat.h b/sys/sys/stat.h index a07b292..4561826 100644 --- a/sys/sys/stat.h +++ b/sys/sys/stat.h @@ -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 }; |