Pedantic nit: use vm_pindex_t instead of long for a count of pages.

This commit is contained in:
John Baldwin 2012-03-14 20:57:48 +00:00
parent cbfa304088
commit df96bc9713
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=232984

View File

@ -223,7 +223,7 @@ _vm_phys_create_seg(vm_paddr_t start, vm_paddr_t end, int flind, int domain)
{
struct vm_phys_seg *seg;
#ifdef VM_PHYSSEG_SPARSE
long pages;
vm_pindex_t pages;
int segind;
pages = 0;