summaryrefslogtreecommitdiffstats
path: root/sys/powerpc/aim/mmu_oea64.c
diff options
context:
space:
mode:
authornwhitehorn <nwhitehorn@FreeBSD.org>2010-09-08 19:28:43 +0000
committernwhitehorn <nwhitehorn@FreeBSD.org>2010-09-08 19:28:43 +0000
commit04e78f792b67eaf98e1cb3ccbee56c317030b616 (patch)
tree558cbca7148b98cbde0541e81dd9742e9a9b58d7 /sys/powerpc/aim/mmu_oea64.c
parent817eae6892c23f1071a686395c9f5ac109e4dba5 (diff)
downloadFreeBSD-src-04e78f792b67eaf98e1cb3ccbee56c317030b616.zip
FreeBSD-src-04e78f792b67eaf98e1cb3ccbee56c317030b616.tar.gz
Fix a printf specifier on 64-bit systems.
Diffstat (limited to 'sys/powerpc/aim/mmu_oea64.c')
-rw-r--r--sys/powerpc/aim/mmu_oea64.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/powerpc/aim/mmu_oea64.c b/sys/powerpc/aim/mmu_oea64.c
index 8cf8349..a6aebde 100644
--- a/sys/powerpc/aim/mmu_oea64.c
+++ b/sys/powerpc/aim/mmu_oea64.c
@@ -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);
OpenPOWER on IntegriCloud