From 20c544dbdf274e19d69d92ccbf92bed8cea2aef1 Mon Sep 17 00:00:00 2001 From: Maxime Henrion Date: Sun, 6 Oct 2002 12:07:58 +0000 Subject: [PATCH] Yet another 64 bits warning fix: s/u_int/size_t/. --- sys/fs/umapfs/umap_vfsops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/fs/umapfs/umap_vfsops.c b/sys/fs/umapfs/umap_vfsops.c index e33058fb692..db6371c35da 100644 --- a/sys/fs/umapfs/umap_vfsops.c +++ b/sys/fs/umapfs/umap_vfsops.c @@ -96,7 +96,7 @@ umapfs_mount(mp, path, data, ndp, td) struct vnode *lowerrootvp, *vp; struct vnode *umapm_rootvp; struct umap_mount *amp; - u_int size; + size_t size; int error; #ifdef DEBUG int i;