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);
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to