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:
parent
68d1243587
commit
9eb6e51923
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user