Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 19 Nov 2025 10:11:32 +0000
From:      Gordon Bergling <gbe@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: e39f64a7a3eb - stable/14 - pmcstat(8): Fix a typo in an error message
Message-ID:  <691d97d4.3d193.58c5faeb@gitrepo.freebsd.org>

index | next in thread | raw e-mail

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);
 		}
 	}


help

Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?691d97d4.3d193.58c5faeb>