Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/freebsd/freebsd-src.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Bergling <gbe@FreeBSD.org>2022-10-25 13:58:55 +0300
committerGordon Bergling <gbe@FreeBSD.org>2022-10-25 13:58:55 +0300
commit7bef61eef3a88a79e9047335812bb683d043b477 (patch)
tree6775609f1ce75ce765be5b32897bb0fae8f7c40a /usr.sbin
parent24a630de81007a2fcb6a78739b08b5e000501894 (diff)
dconschat(8): Fix a typo in an error message
- s/faild/failed/ MFC after: 1 week
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/dconschat/dconschat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/dconschat/dconschat.c b/usr.sbin/dconschat/dconschat.c
index c7e21460226c..af7f8f650d71 100644
--- a/usr.sbin/dconschat/dconschat.c
+++ b/usr.sbin/dconschat/dconschat.c
@@ -281,7 +281,7 @@ dconschat_get_crom(struct dcons_state *dc)
for (i = 20; i < 0x400; i += 4) {
if (dread(dc, &buf, 4, addr + i) < 0) {
if (verbose)
- warn("crom read faild");
+ warn("crom read failed");
goto out;
}
buf = ntohl(buf);