git: 7bef61eef3a8 - main - dconschat(8): Fix a typo in an error message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 25 Oct 2022 10:59:15 UTC
The branch main has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=7bef61eef3a88a79e9047335812bb683d043b477
commit 7bef61eef3a88a79e9047335812bb683d043b477
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-10-25 10:58:55 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-10-25 10:58:55 +0000
dconschat(8): Fix a typo in an error message
- s/faild/failed/
MFC after: 1 week
---
usr.sbin/dconschat/dconschat.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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);