diff options
author | Bruce Evans <bde@FreeBSD.org> | 2004-05-20 16:48:17 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 2004-05-20 16:48:17 +0000 |
commit | 372c2e96130a8e7687bbc8ea51a9996a9e859fc3 (patch) | |
tree | f88729c1d0083dc9887f6b73a5144d0e935cb878 | |
parent | c81d4a03965fbd4d7adcff0c12c7efc9fb3c77d2 (diff) |
Notes
-rw-r--r-- | sys/kern/subr_prof.c | 4 |
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; |