diff options
| author | Xin LI <delphij@FreeBSD.org> | 2009-03-23 23:22:09 +0000 |
|---|---|---|
| committer | Xin LI <delphij@FreeBSD.org> | 2009-03-23 23:22:09 +0000 |
| commit | 7efabbb915b6ca675726c81d57d254e4d080c3b2 (patch) | |
| tree | 2848f434958d8b42a06fc34c506f8e52756a2065 /lib/libc/db/mpool | |
| parent | d2b227cd4911d60018a01c8e8def38e4b8738ba4 (diff) | |
Notes
Diffstat (limited to 'lib/libc/db/mpool')
| -rw-r--r-- | lib/libc/db/mpool/mpool.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/db/mpool/mpool.c b/lib/libc/db/mpool/mpool.c index caaf47ed4ce5..779ac890d958 100644 --- a/lib/libc/db/mpool/mpool.c +++ b/lib/libc/db/mpool/mpool.c @@ -406,9 +406,9 @@ mpool_stat(MPOOL *mp) int cnt; char *sep; - (void)fprintf(stderr, "%u pages in the file\n", mp->npages); + (void)fprintf(stderr, "%lu pages in the file\n", mp->npages); (void)fprintf(stderr, - "page size %lu, cacheing %u pages of %u page max cache\n", + "page size %lu, cacheing %lu pages of %lu page max cache\n", mp->pagesize, mp->curcache, mp->maxcache); (void)fprintf(stderr, "%lu page puts, %lu page gets, %lu page new\n", mp->pageput, mp->pageget, mp->pagenew); |
