summaryrefslogtreecommitdiffstats
path: root/sys/vm/vm_map.c
diff options
context:
space:
mode:
authorjeff <jeff@FreeBSD.org>2002-03-19 11:49:10 +0000
committerjeff <jeff@FreeBSD.org>2002-03-19 11:49:10 +0000
commit1f0d97f8af83b9962e72a63d40b7e75ab337bed7 (patch)
tree2a4fafaf157b9803fd3e08e5f1e79bc75e16e88c /sys/vm/vm_map.c
parentc981967451a4586d32d793b203eec54503c6a4e2 (diff)
downloadFreeBSD-src-1f0d97f8af83b9962e72a63d40b7e75ab337bed7.zip
FreeBSD-src-1f0d97f8af83b9962e72a63d40b7e75ab337bed7.tar.gz
Quit a warning introduced by UMA. This only occurs on machines where
vm_size_t != unsigned long. Reviewed by: phk
Diffstat (limited to 'sys/vm/vm_map.c')
-rw-r--r--sys/vm/vm_map.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c
index 8eadaa1..0c6c84f 100644
--- a/sys/vm/vm_map.c
+++ b/sys/vm/vm_map.c
@@ -228,7 +228,7 @@ vm_map_zdtor(void *mem, int size, void *arg)
map, map->nentries));
KASSERT(map->size == 0,
("map %p size == %lu on free.",
- map, map->size));
+ map, (unsigned long)map->size));
KASSERT(map->infork == 0,
("map %p infork == %d on free.",
map, map->infork));
OpenPOWER on IntegriCloud