Remove harmless invalid cast.

Sponsored by:	DARPA, Network Associates Laboratories
This commit is contained in:
Jake Burkholder 2003-04-25 15:07:58 +00:00
parent 477dd32fb5
commit ffad008fcd
2 changed files with 2 additions and 2 deletions

View File

@ -1452,7 +1452,7 @@ pmap_allocpte(pmap_t pmap, vm_offset_t va)
/*
* Get the page directory entry
*/
ptepa = (vm_offset_t) pmap->pm_pdir[ptepindex];
ptepa = pmap->pm_pdir[ptepindex];
/*
* This supports switching from a 4MB page to a

View File

@ -1452,7 +1452,7 @@ pmap_allocpte(pmap_t pmap, vm_offset_t va)
/*
* Get the page directory entry
*/
ptepa = (vm_offset_t) pmap->pm_pdir[ptepindex];
ptepa = pmap->pm_pdir[ptepindex];
/*
* This supports switching from a 4MB page to a