Style fix.

Reported by:	bde, dim
This commit is contained in:
Attilio Rao 2010-10-26 18:01:28 +00:00
parent 01486632e9
commit b2724beede
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=214386

View File

@ -176,7 +176,7 @@ cb_dumpdata(struct md_pa *mdp, int seqnr, void *arg)
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, void *arg)
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++) {