Fix a typo in r212281. uintptr -> uintptr_t

Pointy hat to:  rstone

Approved by:    emaste (mentor)
MFC after:      2 weeks
This commit is contained in:
Ryan Stone 2010-09-07 02:51:11 +00:00
parent 0d41964095
commit d473d3a164
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=212282

View File

@ -598,7 +598,7 @@ munmap(td, uap)
#ifdef HWPMC_HOOKS
/* downgrade the lock to prevent a LOR with the pmc-sx lock */
vm_map_lock_downgrade(map);
if (pkm.pm_address != (uintptr) NULL)
if (pkm.pm_address != (uintptr_t) NULL)
PMC_CALL_HOOK(td, PMC_FN_MUNMAP, (void *) &pkm);
vm_map_unlock_read(map);
#else