Date: Tue, 25 Oct 2022 10:59:15 GMT From: Gordon Bergling <gbe@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 7bef61eef3a8 - main - dconschat(8): Fix a typo in an error message Message-ID: <202210251059.29PAxFhM054919@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202210251059.29PAxFhM054919>