svn commit: r214386 - head/sys/x86/x86

Attilio Rao attilio at FreeBSD.org
Tue Oct 26 18:01:28 UTC 2010


Author: attilio
Date: Tue Oct 26 18:01:28 2010
New Revision: 214386
URL: http://svn.freebsd.org/changeset/base/214386

Log:
  Style fix.
  
  Reported by:	bde, dim

Modified:
  head/sys/x86/x86/dump_machdep.c

Modified: head/sys/x86/x86/dump_machdep.c
==============================================================================
--- head/sys/x86/x86/dump_machdep.c	Tue Oct 26 17:49:17 2010	(r214385)
+++ head/sys/x86/x86/dump_machdep.c	Tue Oct 26 18:01:28 2010	(r214386)
@@ -176,7 +176,7 @@ cb_dumpdata(struct md_pa *mdp, int seqnr
 	if (maxdumppgs == 0)	/* seatbelt */
 		maxdumppgs = 1;
 
-	printf("  chunk %d: %jdMB (%jd pages)", seqnr, (uintmax_t)PG2MB(pgs),
+	printf("  chunk %d: %juMB (%ju pages)", seqnr, (uintmax_t)PG2MB(pgs),
 	    (uintmax_t)pgs);
 
 	while (pgs) {
@@ -186,7 +186,7 @@ cb_dumpdata(struct md_pa *mdp, int seqnr
 		sz = chunk << PAGE_SHIFT;
 		counter += sz;
 		if (counter >> 24) {
-			printf(" %jd", (uintmax_t)PG2MB(pgs));
+			printf(" %ju", (uintmax_t)PG2MB(pgs));
 			counter &= (1<<24) - 1;
 		}
 		for (i = 0; i < chunk; i++) {


More information about the svn-src-head mailing list