diff options
| author | Gordon Bergling <gbe@FreeBSD.org> | 2025-11-19 14:16:33 +0000 |
|---|---|---|
| committer | Gordon Bergling <gbe@FreeBSD.org> | 2025-11-19 14:16:33 +0000 |
| commit | d76ea20f99965e8f3b9dbfcb41ca148711d528bb (patch) | |
| tree | 4bd6b458d58c5bceff420d470da096b52159d390 | |
| parent | 32605b159f3fea3a5d4710055681650f3de9ea68 (diff) | |
mpool(3): Fix a typo in statistical message
- s/cacheing/caching/
MFC after: 5 days
| -rw-r--r-- | lib/libc/db/mpool/mpool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/db/mpool/mpool.c b/lib/libc/db/mpool/mpool.c index 9dab032134bc..1bab66d73baf 100644 --- a/lib/libc/db/mpool/mpool.c +++ b/lib/libc/db/mpool/mpool.c @@ -455,7 +455,7 @@ mpool_stat(MPOOL *mp) (void)fprintf(stderr, "%lu pages in the file\n", mp->npages); (void)fprintf(stderr, - "page size %lu, cacheing %lu pages of %lu page max cache\n", + "page size %lu, caching %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); |
