aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Bergling <gbe@FreeBSD.org>2022-01-26 09:36:42 +0000
committerGordon Bergling <gbe@FreeBSD.org>2022-01-26 09:36:42 +0000
commitee6d379be73707bcc99ba8bff7bae85708469f9b (patch)
treed3e2046da74b44f78a510fd719e0bedec730f5dd
parentb3df222eaed5ae815695f13a4709ec5463ee8cab (diff)
downloadsrc-ee6d379be73707bcc99ba8bff7bae85708469f9b.tar.gz
src-ee6d379be73707bcc99ba8bff7bae85708469f9b.zip
cpucontrol(8): Fix a typo in an error message
- s/incorret/incorrect/ MFC after: 1 week
-rw-r--r--usr.sbin/cpucontrol/amd10h.c2
1 files changed, 1 insertions, 1 deletions
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) {