From 1f0d97f8af83b9962e72a63d40b7e75ab337bed7 Mon Sep 17 00:00:00 2001 From: jeff Date: Tue, 19 Mar 2002 11:49:10 +0000 Subject: Quit a warning introduced by UMA. This only occurs on machines where vm_size_t != unsigned long. Reviewed by: phk --- sys/vm/vm_map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/vm/vm_map.c') 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)); -- cgit v1.1