From 76489ac1ea604f511232838164573ea21e9a74a8 Mon Sep 17 00:00:00 2001 From: ed Date: Mon, 21 Jun 2010 09:55:56 +0000 Subject: 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. --- sys/kern/vfs_cache.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/kern/vfs_cache.c') diff --git a/sys/kern/vfs_cache.c b/sys/kern/vfs_cache.c index a13a721..c0732ac 100644 --- a/sys/kern/vfs_cache.c +++ b/sys/kern/vfs_cache.c @@ -379,7 +379,7 @@ cache_lookup(dvp, vpp, cnp) struct componentname *cnp; { struct namecache *ncp; - u_int32_t hash; + uint32_t hash; int error, ltype, wlocked; if (!doingcache) { @@ -602,7 +602,7 @@ cache_enter(dvp, vp, cnp) { struct namecache *ncp, *n2; struct nchashhead *ncpp; - u_int32_t hash; + uint32_t hash; int flag; int hold; int zap; -- cgit v1.1