Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 8 Sep 2010 19:28:43 +0000 (UTC)
From:      Nathan Whitehorn <nwhitehorn@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r212331 - head/sys/powerpc/aim
Message-ID:  <201009081928.o88JShtM065347@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201009081928.o88JShtM065347>