The branch main has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=780a50c729c7bc0ac1750947223feadd918b17e8
commit 780a50c729c7bc0ac1750947223feadd918b17e8 Author: Gordon Bergling <[email protected]> AuthorDate: 2025-10-26 15:29:08 +0000 Commit: Gordon Bergling <[email protected]> CommitDate: 2025-10-26 15:59:41 +0000 pmcstat(8): Fix a typo in an error message - s/evalation/evaluation/ MFC after: 1 week --- usr.sbin/pmcstat/pmcstat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/pmcstat/pmcstat.c b/usr.sbin/pmcstat/pmcstat.c index 98e14dfb9113..ac9169f3e008 100644 --- a/usr.sbin/pmcstat/pmcstat.c +++ b/usr.sbin/pmcstat/pmcstat.c @@ -215,7 +215,7 @@ pmcstat_find_targets(const char *spec) SLIST_INSERT_HEAD(&args.pa_targets, pt, pt_next); } else if (rv != REG_NOMATCH) { regerror(rv, ®, errbuf, sizeof(errbuf)); - errx(EX_SOFTWARE, "ERROR: Regex evalation failed: %s", + errx(EX_SOFTWARE, "ERROR: Regex evaluation failed: %s", errbuf); } }
