Date: Wed, 19 Nov 2025 14:16:46 +0000 From: Gordon Bergling <gbe@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: d76ea20f9996 - main - mpool(3): Fix a typo in statistical message Message-ID: <691dd14e.2c3d0.777b1ed9@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=d76ea20f99965e8f3b9dbfcb41ca148711d528bb commit d76ea20f99965e8f3b9dbfcb41ca148711d528bb Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2025-11-19 14:16:33 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2025-11-19 14:16:33 +0000 mpool(3): Fix a typo in statistical message - s/cacheing/caching/ MFC after: 5 days --- 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 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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?691dd14e.2c3d0.777b1ed9>
