Date: Mon, 24 Nov 2025 06:00:58 +0000 From: Gordon Bergling <gbe@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: ad81800724fb - stable/14 - mpool(3): Fix a typo in statistical message Message-ID: <6923f49a.2250a.8164a9a@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch stable/14 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=ad81800724fb078d8a99d7db82731f5e666c69ce commit ad81800724fb078d8a99d7db82731f5e666c69ce Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2025-11-19 14:16:33 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2025-11-24 06:00:11 +0000 mpool(3): Fix a typo in statistical message - s/cacheing/caching/ (cherry picked from commit d76ea20f99965e8f3b9dbfcb41ca148711d528bb) --- lib/libc/db/mpool/mpool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libc/db/mpool/mpool.c b/lib/libc/db/mpool/mpool.c index feeea517315c..c1b5eba2d463 100644 --- a/lib/libc/db/mpool/mpool.c +++ b/lib/libc/db/mpool/mpool.c @@ -458,7 +458,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);help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6923f49a.2250a.8164a9a>
