summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_module.c
diff options
context:
space:
mode:
authored <ed@FreeBSD.org>2010-06-21 09:55:56 +0000
committered <ed@FreeBSD.org>2010-06-21 09:55:56 +0000
commit76489ac1ea604f511232838164573ea21e9a74a8 (patch)
tree916572d41a618634b84823c3b89048c2144938df /sys/kern/kern_module.c
parent107ec73aada25d2e0a7051e1f2a8cbef92902d04 (diff)
downloadFreeBSD-src-76489ac1ea604f511232838164573ea21e9a74a8.zip
FreeBSD-src-76489ac1ea604f511232838164573ea21e9a74a8.tar.gz
Use ISO C99 integer types in sys/kern where possible.
There are only about 100 occurences of the BSD-specific u_int*_t datatypes in sys/kern. The ISO C99 integer types are used here more often.
Diffstat (limited to 'sys/kern/kern_module.c')
-rw-r--r--sys/kern/kern_module.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_module.c b/sys/kern/kern_module.c
index 0409344..1869867 100644
--- a/sys/kern/kern_module.c
+++ b/sys/kern/kern_module.c
@@ -455,9 +455,9 @@ MODULE_VERSION(kernel, __FreeBSD_version);
typedef union modspecific32 {
int intval;
- u_int32_t uintval;
+ uint32_t uintval;
int longval;
- u_int32_t ulongval;
+ uint32_t ulongval;
} modspecific32_t;
struct module_stat32 {
OpenPOWER on IntegriCloud