Fix a printf specifier on 64-bit systems.

This commit is contained in:
Nathan Whitehorn 2010-09-08 19:28:43 +00:00
parent ad931dfdcb
commit bcb478eb35
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=212331

View File

@ -2086,7 +2086,7 @@ moea64_get_unique_vsid(void) {
hash |= i;
}
KASSERT(!(moea64_vsid_bitmap[n] & mask),
("Allocating in-use VSID %#x\n", hash));
("Allocating in-use VSID %#zx\n", hash));
moea64_vsid_bitmap[n] |= mask;
mtx_unlock(&moea64_slb_mutex);
return (hash);