Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 Nov 2025 01:11:53 GMT
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: 67f5763ee0db - stable/15 - pmcstat(8): Fix a typo in an error message
Message-ID:  <202511020111.5A21BrEx068835@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch stable/15 has been updated by gbe:

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

commit 67f5763ee0dbccb5e0d42d479decc11bfe533908
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2025-10-26 15:29:08 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2025-11-02 01:09:48 +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 a1f563e5acbc..1809dae7bc4c 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);
 		}
 	}


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202511020111.5A21BrEx068835>