Quit a warning introduced by UMA. This only occurs on machines where

vm_size_t != unsigned long.

Reviewed by:	phk
This commit is contained in:
Jeff Roberson 2002-03-19 11:49:10 +00:00
parent 68d1243587
commit 9eb6e51923

View File

@ -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));