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++) {
_______________________________________________
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