svn commit: r212331 - head/sys/powerpc/aim

Nathan Whitehorn nwhitehorn at FreeBSD.org
Wed Sep 8 19:28:44 UTC 2010


Author: nwhitehorn
Date: Wed Sep  8 19:28:43 2010
New Revision: 212331
URL: http://svn.freebsd.org/changeset/base/212331

Log:
  Fix a printf specifier on 64-bit systems.

Modified:
  head/sys/powerpc/aim/mmu_oea64.c

Modified: head/sys/powerpc/aim/mmu_oea64.c
==============================================================================
--- head/sys/powerpc/aim/mmu_oea64.c	Wed Sep  8 18:32:23 2010	(r212330)
+++ head/sys/powerpc/aim/mmu_oea64.c	Wed Sep  8 19:28:43 2010	(r212331)
@@ -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);


More information about the svn-src-all mailing list