summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>2004-05-20 16:48:17 +0000
committerBruce Evans <bde@FreeBSD.org>2004-05-20 16:48:17 +0000
commit372c2e96130a8e7687bbc8ea51a9996a9e859fc3 (patch)
treef88729c1d0083dc9887f6b73a5144d0e935cb878
parentc81d4a03965fbd4d7adcff0c12c7efc9fb3c77d2 (diff)
Notes
-rw-r--r--sys/kern/subr_prof.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_prof.c b/sys/kern/subr_prof.c
index ea1c4abcb70a..1797f7a38142 100644
--- a/sys/kern/subr_prof.c
+++ b/sys/kern/subr_prof.c
@@ -160,8 +160,8 @@ kmstartup(dummy)
p->lowpc = ROUNDDOWN((u_long)btext, HISTFRACTION * sizeof(HISTCOUNTER));
p->highpc = ROUNDUP((u_long)etext, HISTFRACTION * sizeof(HISTCOUNTER));
p->textsize = p->highpc - p->lowpc;
- printf("Profiling kernel, textsize=%lu [%x..%x]\n",
- p->textsize, p->lowpc, p->highpc);
+ printf("Profiling kernel, textsize=%lu [%jx..%jx]\n",
+ p->textsize, (uintmax_t)p->lowpc, (uintmax_t)p->highpc);
p->kcountsize = p->textsize / HISTFRACTION;
p->hashfraction = HASHFRACTION;
p->fromssize = p->textsize / HASHFRACTION;