From 7e7a2c70c097fd9935fd93bf3554e270ebc451e9 Mon Sep 17 00:00:00 2001 From: Mike Barcroft Date: Wed, 26 Feb 2003 20:10:54 +0000 Subject: [PATCH] Change spelling of `u_int' to `unsigned int' in the POSIX case. --- sys/sys/stat.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/sys/stat.h b/sys/sys/stat.h index a07b292b6e8..45618264713 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 };