Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 Feb 2022 08:49:21 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: b42a942f7e33 - stable/13 - cpucontrol(8): Fix a typo in an error message
Message-ID:  <202202020849.2128nLsC042747@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by gbe (doc committer):

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

commit b42a942f7e33b4839b549c4d9e2f76f6390744c2
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-01-26 09:36:42 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-02-02 08:49:08 +0000

    cpucontrol(8): Fix a typo in an error message
    
    - s/incorret/incorrect/
    
    (cherry picked from commit ee6d379be73707bcc99ba8bff7bae85708469f9b)
---
 usr.sbin/cpucontrol/amd10h.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/usr.sbin/cpucontrol/amd10h.c b/usr.sbin/cpucontrol/amd10h.c
index ca2bba70dc47..5d3c4a1ac003 100644
--- a/usr.sbin/cpucontrol/amd10h.c
+++ b/usr.sbin/cpucontrol/amd10h.c
@@ -217,7 +217,7 @@ amd10h_update(const struct ucode_update_params *params)
 		fw_size -= sizeof(*section_header);
 		if (section_header->type != AMD_10H_uCODE_TYPE) {
 			WARNX(2, "%s is not a valid amd firmware: "
-			    "section has incorret type", path);
+			    "section has incorrect type", path);
 			goto done;
 		}
 		if (section_header->size > fw_size) {



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