mpool(3): Fix a typo in statistical message

- s/cacheing/caching/

MFC after:	5 days
This commit is contained in:
Gordon Bergling
2025-11-19 15:16:33 +01:00
parent 32605b159f
commit d76ea20f99
+1 -1
View File
@@ -455,7 +455,7 @@ mpool_stat(MPOOL *mp)
(void)fprintf(stderr, "%lu pages in the file\n", mp->npages); (void)fprintf(stderr, "%lu pages in the file\n", mp->npages);
(void)fprintf(stderr, (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); mp->pagesize, mp->curcache, mp->maxcache);
(void)fprintf(stderr, "%lu page puts, %lu page gets, %lu page new\n", (void)fprintf(stderr, "%lu page puts, %lu page gets, %lu page new\n",
mp->pageput, mp->pageget, mp->pagenew); mp->pageput, mp->pageget, mp->pagenew);