diff options
| author | Gordon Bergling <gbe@FreeBSD.org> | 2025-10-26 15:29:08 +0000 |
|---|---|---|
| committer | Gordon Bergling <gbe@FreeBSD.org> | 2025-10-26 15:59:41 +0000 |
| commit | 780a50c729c7bc0ac1750947223feadd918b17e8 (patch) | |
| tree | 234cf2b378469d4ce66eccc0c5f142ab010fcd35 | |
| parent | 8f1c946f1c42bdf9fabd870100b316af71c5e45e (diff) | |
pmcstat(8): Fix a typo in an error message
- s/evalation/evaluation/
MFC after: 1 week
| -rw-r--r-- | usr.sbin/pmcstat/pmcstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } } |
