summaryrefslogtreecommitdiffstats
path: root/sys/sys/stat.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/sys/stat.h')
-rw-r--r--sys/sys/stat.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/sys/stat.h b/sys/sys/stat.h
index ef1d0a1..a07b292 100644
--- a/sys/sys/stat.h
+++ b/sys/sys/stat.h
@@ -124,13 +124,13 @@ struct stat {
* to cover up to 64 bits on 32-bit machines. We assume that
* CHAR_BIT is 8...
*/
- int :(8 / 2) * (16 - (int)sizeof(struct timespec));
- int :(8 / 2) * (16 - (int)sizeof(struct timespec));
+ u_int :(8 / 2) * (16 - (int)sizeof(struct timespec));
+ u_int :(8 / 2) * (16 - (int)sizeof(struct timespec));
#else
time_t st_birthtime; /* time of file creation */
long st_birthtimensec; /* nsec of file creation */
- int :(8 / 2) * (16 - (int)sizeof(struct __timespec));
- int :(8 / 2) * (16 - (int)sizeof(struct __timespec));
+ u_int :(8 / 2) * (16 - (int)sizeof(struct __timespec));
+ u_int :(8 / 2) * (16 - (int)sizeof(struct __timespec));
#endif
};
@@ -155,8 +155,8 @@ struct nstat {
/*
* See above about the following padding.
*/
- int :(8 / 2) * (16 - (int)sizeof(struct timespec));
- int :(8 / 2) * (16 - (int)sizeof(struct timespec));
+ u_int :(8 / 2) * (16 - (int)sizeof(struct timespec));
+ u_int :(8 / 2) * (16 - (int)sizeof(struct timespec));
};
#endif
OpenPOWER on IntegriCloud