aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Bergling <gbe@FreeBSD.org>2025-10-26 15:29:08 +0000
committerGordon Bergling <gbe@FreeBSD.org>2025-10-26 15:59:41 +0000
commit780a50c729c7bc0ac1750947223feadd918b17e8 (patch)
tree234cf2b378469d4ce66eccc0c5f142ab010fcd35
parent8f1c946f1c42bdf9fabd870100b316af71c5e45e (diff)
pmcstat(8): Fix a typo in an error message
- s/evalation/evaluation/ MFC after: 1 week
-rw-r--r--usr.sbin/pmcstat/pmcstat.c2
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, &reg, errbuf, sizeof(errbuf));
- errx(EX_SOFTWARE, "ERROR: Regex evalation failed: %s",
+ errx(EX_SOFTWARE, "ERROR: Regex evaluation failed: %s",
errbuf);
}
}