git: e39f64a7a3eb - stable/14 - pmcstat(8): Fix a typo in an error message

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Wed, 19 Nov 2025 10:11:32 UTC
The branch stable/14 has been updated by gbe:

URL: https://cgit.FreeBSD.org/src/commit/?id=e39f64a7a3ebb39e47b62c84ebd5c8e40d08b99d

commit e39f64a7a3ebb39e47b62c84ebd5c8e40d08b99d
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2025-10-26 15:29:08 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2025-11-19 10:11:21 +0000

    pmcstat(8): Fix a typo in an error message
    
    - s/evalation/evaluation/
    
    (cherry picked from commit 780a50c729c7bc0ac1750947223feadd918b17e8)
---
 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 c36cee436e55..49a0e0ce1046 100644
--- a/usr.sbin/pmcstat/pmcstat.c
+++ b/usr.sbin/pmcstat/pmcstat.c
@@ -216,7 +216,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);
 		}
 	}